Add tank, healer, caster, and misc presets, add feint and spirit dart to pl preset

This commit is contained in:
Ean Milligan 2024-09-21 00:16:16 -04:00
parent 0eb0db0514
commit 0bf818288a
3 changed files with 9 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -809,9 +809,14 @@ const ActionNames = Actions.map((action) => action.name.toLowerCase());
const ActionShortNames = Actions.map((action) => action.shorthand);
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]],
['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 {