Don't allow double battle for final boss fight

pull/2/head
Flashfyre 2023-10-30 12:47:06 -04:00
parent 1ae54de59e
commit afc1f81e30
1 changed files with 1 additions and 1 deletions

View File

@ -637,7 +637,7 @@ export default class BattleScene extends Phaser.Scene {
const playerField = this.getPlayerField();
if (double === undefined && newWaveIndex > 1) {
if (newBattleType === BattleType.WILD) {
if (newBattleType === BattleType.WILD && (this.gameMode === GameMode.CLASSIC ? newWaveIndex !== 200 : newWaveIndex % 250)) {
const doubleChance = new Utils.IntegerHolder(newWaveIndex % 10 === 0 ? 32 : 8);
this.applyModifiers(DoubleBattleChanceBoosterModifier, true, doubleChance);
playerField.forEach(p => applyAbAttrs(DoubleBattleChanceAbAttr, p, null, doubleChance));