diff --git a/src/battle-phases.ts b/src/battle-phases.ts index a7380eba5..d32d6ad4a 100644 --- a/src/battle-phases.ts +++ b/src/battle-phases.ts @@ -2366,7 +2366,7 @@ export class VictoryPhase extends PokemonPhase { this.scene.pushPhase(new ModifierRewardPhase(this.scene, modifierTypes.GOLDEN_POKEBALL)); } if (this.scene.gameMode !== GameMode.CLASSIC && !(this.scene.currentBattle.waveIndex % 50)) { - this.scene.pushPhase(new ModifierRewardPhase(this.scene, modifierTypes.VOUCHER)); + this.scene.pushPhase(new ModifierRewardPhase(this.scene, !(this.scene.currentBattle.waveIndex % 250) ? modifierTypes.VOUCHER_PLUS : modifierTypes.VOUCHER)); this.scene.pushPhase(new AddEnemyBuffModifierPhase(this.scene)); } }