diff --git a/data/scripts.js b/data/scripts.js index 83ca298165..319d8cf0e2 100644 --- a/data/scripts.js +++ b/data/scripts.js @@ -1096,7 +1096,7 @@ exports.BattleScripts = { name = template.baseSpecies; } let battleForme = this.checkBattleForme(template); - if (battleForme && (battleForme.isMega ? !teamDetails.megaCount : this.random(2))) { + if (battleForme && battleForme.tier !== 'AG' && (battleForme.isMega ? !teamDetails.megaCount : this.random(2))) { template = this.getTemplate(template.otherFormes.length >= 2 ? template.otherFormes[this.random(template.otherFormes.length)] : template.otherFormes[0]); } @@ -2033,8 +2033,6 @@ exports.BattleScripts = { let tier = template.tier; switch (tier) { - case 'AG': - continue; case 'Uber': // Ubers are limited to 2 but have a 20% chance of being added anyway. if (uberCount > 1 && this.random(5) >= 1) continue;