Add support for Scarlet/Violet pokemon

This commit is contained in:
Dragon Fire
2024-03-20 19:16:36 -04:00
parent 2cfafb83f8
commit e5d4fe9a63
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -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 {
+1 -1
View File
@@ -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();