Make e4 not automatically recharge tera

This commit is contained in:
Xavion3 2025-09-01 08:12:04 +10:00
parent dcb2f32129
commit 64ad2ee9c2

View File

@ -1476,10 +1476,7 @@ export class BattleScene extends SceneBase {
pokemon.resetBattleAndWaveData(); pokemon.resetBattleAndWaveData();
pokemon.resetTera(); pokemon.resetTera();
applyAbAttrs("PostBattleInitAbAttr", { pokemon }); applyAbAttrs("PostBattleInitAbAttr", { pokemon });
if ( if (pokemon.hasSpecies(SpeciesId.TERAPAGOS)) {
pokemon.hasSpecies(SpeciesId.TERAPAGOS) ||
(this.gameMode.isClassic && this.currentBattle.waveIndex > 180 && this.currentBattle.waveIndex <= 190)
) {
this.arena.playerTerasUsed = 0; this.arena.playerTerasUsed = 0;
} }
} }