Merge pull request #6463 from Xavion3/remove-e4-tera-recharge

[Balance] Make e4 not automatically recharge tera
This commit is contained in:
Sirz Benjie 2025-08-31 18:59:19 -05:00 committed by GitHub
commit 45a162059c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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