diff --git a/src/system/game-data.ts b/src/system/game-data.ts index de9406aef..cd8f38d9a 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++; }