diff --git a/structures/pokemon/Pokemon.js b/structures/pokemon/Pokemon.js index 0479829a..6f9226da 100644 --- a/structures/pokemon/Pokemon.js +++ b/structures/pokemon/Pokemon.js @@ -82,7 +82,8 @@ module.exports = class Pokemon { } get generation() { - if (this.id > 898) return null; + if (this.id > 1025) return null; + if (this.id >= 906) return 9; if (this.id >= 810) return 8; if (this.id >= 722) return 7; if (this.id >= 650) return 6;