This commit is contained in:
Dragon Fire
2024-03-20 19:18:55 -04:00
parent e5d4fe9a63
commit 73c568c084
+3 -2
View File
@@ -3,7 +3,7 @@ const { MessageEmbed } = require('discord.js');
const { stripIndents } = require('common-tags');
const { arrayEquals, reactIfAble } = require('../../util/Util');
const { MEGA_EVOLVE_EMOJI_NAME, MEGA_EVOLVE_EMOJI_ID } = process.env;
const genGames = [null, 'rb', 'gs', 'rs', 'dp', 'bw', 'xy', 'sm', 'ss'];
const genGames = [null, 'rb', 'gs', 'rs', 'dp', 'bw', 'xy', 'sm', 'ss', 'sv'];
const games = {
rb: 'Red/Blue',
gs: 'Gold/Silver',
@@ -12,7 +12,8 @@ const games = {
bw: 'Black/White',
xy: 'X/Y',
sm: 'Sun/Moon',
ss: 'Sword/Shield'
ss: 'Sword/Shield',
sv: 'Scarlet/Violet'
};
module.exports = class PokedexCommand extends Command {