diff --git a/README.md b/README.md index 5a9dfcb..7fa0a9d 100644 --- a/README.md +++ b/README.md @@ -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. ## Commands diff --git a/config.example.ts b/config.example.ts index 11f996f..a932d6f 100755 --- a/config.example.ts +++ b/config.example.ts @@ -1,6 +1,6 @@ export const config = { '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 '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 diff --git a/src/data.ts b/src/data.ts index d46f666..cc8def2 100644 --- a/src/data.ts +++ b/src/data.ts @@ -809,9 +809,14 @@ const ActionNames = Actions.map((action) => action.name.toLowerCase()); const ActionShortNames = Actions.map((action) => action.shorthand); const Presets: Map> = new Map([ + ['tank', [9, 10, 3, 54, 1, 14, 48]], + ['healer', [9, 10, 7, 0, 44, 39, 55]], ['dps', [9, 10, 52, 14, 48]], - ['pl', [50, 13, 44, 39]], - ['ranged', [9, 10, 8, 14, 49]] + ['melee', [9, 10, 52, 14, 48]], + ['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 {