Make tera instant recharge during E4 in classic modes.

This commit is contained in:
Xavion3 2025-02-09 01:36:33 +11:00
parent 2caa271422
commit 6f15512dd1

View File

@ -1374,7 +1374,7 @@ export default class BattleScene extends SceneBase {
pokemon.resetBattleData(); pokemon.resetBattleData();
pokemon.resetTera(); pokemon.resetTera();
applyPostBattleInitAbAttrs(PostBattleInitAbAttr, pokemon); applyPostBattleInitAbAttrs(PostBattleInitAbAttr, pokemon);
if (pokemon.hasSpecies(Species.TERAPAGOS)) { if (pokemon.hasSpecies(Species.TERAPAGOS) || (this.gameMode.isClassic && this.currentBattle.waveIndex > 180 && this.currentBattle.waveIndex <= 190)) {
this.arena.playerTerasUsed = 0; this.arena.playerTerasUsed = 0;
} }
} }