This commit is contained in:
Dragon Fire
2021-01-20 18:28:09 -05:00
parent 2be66ffb63
commit 42b9dfc949
2 changed files with 14 additions and 3 deletions
+2 -2
View File
@@ -86,8 +86,8 @@ module.exports = class Pokemon {
if (this.id >= 387) return 4;
if (this.id >= 252) return 3;
if (this.id >= 152) return 2;
if (this.id >= 1) return 1;
return 0;
if (this.id >= 0) return 1;
return null;
}
get class() {