diff --git a/commands/pokedex/smogon.js b/commands/pokedex/smogon.js index 0eb84a27..fb4f8464 100644 --- a/commands/pokedex/smogon.js +++ b/commands/pokedex/smogon.js @@ -9,7 +9,8 @@ const games = { bw: 'Black/White', xy: 'X/Y', sm: 'Sun/Moon', - ss: 'Sword/Shield' + ss: 'Sword/Shield', + sv: 'Scarlet/Violet' }; module.exports = class SmogonCommand extends Command { diff --git a/structures/pokemon/PokemonStore.js b/structures/pokemon/PokemonStore.js index 00f85b20..ca86e992 100644 --- a/structures/pokemon/PokemonStore.js +++ b/structures/pokemon/PokemonStore.js @@ -10,7 +10,7 @@ module.exports = class PokemonStore extends Collection { constructor(options) { super(options); - this.pokemonCount = 898; + this.pokemonCount = 1025; this.pokemonCountWithCry = 893; this.smogonData = {}; this.moves = new MoveStore();