diff --git a/package.json b/package.json index 16f5a316307..47408b13730 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "pokemon-rogue-battle", "private": true, - "version": "1.0.2", + "version": "1.0.3", "type": "module", "scripts": { "start": "vite", diff --git a/src/system/game-data.ts b/src/system/game-data.ts index de9406aef84..cd8f38d9a99 100644 --- a/src/system/game-data.ts +++ b/src/system/game-data.ts @@ -1000,6 +1000,10 @@ export class GameData { if (incrementCount) { dexEntry.seenCount++; this.gameStats.pokemonSeen++; + if (!trainer && pokemon.species.pseudoLegendary || pokemon.species.legendary) + this.gameStats.legendaryPokemonSeen++; + else if (!trainer && pokemon.species.mythical) + this.gameStats.mythicalPokemonSeen++; if (!trainer && pokemon.isShiny()) this.gameStats.shinyPokemonSeen++; }