diff --git a/src/phases.ts b/src/phases.ts index 4f7a118a185..e8482fda28d 100644 --- a/src/phases.ts +++ b/src/phases.ts @@ -705,6 +705,11 @@ export class NextEncounterPhase extends EncounterPhase { doEncounter(): void { this.scene.playBgm(undefined, true); + for (let pokemon of this.scene.getParty()) { + if (pokemon) + pokemon.resetBattleData(); + } + this.scene.arenaNextEnemy.setVisible(true); const enemyField = this.scene.getEnemyField();