Add tank, healer, caster, and misc presets, add feint and spirit dart to pl preset
This commit is contained in:
parent
0eb0db0514
commit
0bf818288a
|
@ -1,4 +1,4 @@
|
||||||
# Logogram Discord Bot - A FFXIV Eureka Utility Bot | V1.1.5 - 2025/09/17
|
# Logogram Discord Bot - A FFXIV Eureka Utility Bot | V1.1.6 - 2025/09/21
|
||||||
A Discord bot for Eureka Logos Actions and their recipes.
|
A Discord bot for Eureka Logos Actions and their recipes.
|
||||||
|
|
||||||
## Commands
|
## Commands
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
export const config = {
|
export const config = {
|
||||||
'name': 'Logogram Bot', // Name of the bot
|
'name': 'Logogram Bot', // Name of the bot
|
||||||
'version': '1.1.5', // Version of the bot
|
'version': '1.1.6', // Version of the bot
|
||||||
'token': 'the_bot_token', // Discord API Token for this bot
|
'token': 'the_bot_token', // Discord API Token for this bot
|
||||||
'localToken': 'local_testing_token', // Discord API Token for a secondary OPTIONAL testing bot, THIS MUST BE DIFFERENT FROM "token"
|
'localToken': 'local_testing_token', // Discord API Token for a secondary OPTIONAL testing bot, THIS MUST BE DIFFERENT FROM "token"
|
||||||
'prefix': 'l!', // Prefix for all commands
|
'prefix': 'l!', // Prefix for all commands
|
||||||
|
|
|
@ -809,9 +809,14 @@ const ActionNames = Actions.map((action) => action.name.toLowerCase());
|
||||||
const ActionShortNames = Actions.map((action) => action.shorthand);
|
const ActionShortNames = Actions.map((action) => action.shorthand);
|
||||||
|
|
||||||
const Presets: Map<string, Array<number>> = new Map([
|
const Presets: Map<string, Array<number>> = new Map([
|
||||||
|
['tank', [9, 10, 3, 54, 1, 14, 48]],
|
||||||
|
['healer', [9, 10, 7, 0, 44, 39, 55]],
|
||||||
['dps', [9, 10, 52, 14, 48]],
|
['dps', [9, 10, 52, 14, 48]],
|
||||||
['pl', [50, 13, 44, 39]],
|
['melee', [9, 10, 52, 14, 48]],
|
||||||
['ranged', [9, 10, 8, 14, 49]]
|
['ranged', [9, 10, 8, 14, 49]],
|
||||||
|
['caster', [9, 10, 51, 47]],
|
||||||
|
['pl', [50, 13, 44, 39, 19, 22]],
|
||||||
|
['misc', [12, 11, 13, 16]],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|
Loading…
Reference in New Issue