This commit is contained in:
Dragon Fire
2020-12-10 16:53:06 -05:00
parent 26926ed344
commit 7ac018797f
+1 -1
View File
@@ -69,7 +69,7 @@ module.exports = class Pokemon {
if (!this.stats) return null;
if (this.legendary || this.mythical || this.baby || this.missingno) return false;
if (this.baseStatTotal !== 600) return false;
if (this.chain.length !== 3) return false;
if (this.chain.data.length !== 3) return false;
return true;
}