mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-24 00:09:31 +02:00
Compare commits
1 Commits
248c526392
...
65ea02ec6b
Author | SHA1 | Date | |
---|---|---|---|
|
65ea02ec6b |
@ -402,8 +402,6 @@ export class CommandPhase extends FieldPhase {
|
|||||||
} else if ((isClassic && missingMultipleStarters) || (isEndless && isEndlessMinorBoss) || isDaily) {
|
} else if ((isClassic && missingMultipleStarters) || (isEndless && isEndlessMinorBoss) || isDaily) {
|
||||||
// Uncatchable final boss in classic and endless
|
// Uncatchable final boss in classic and endless
|
||||||
this.queueShowText("battle:noPokeballForceFinalBoss");
|
this.queueShowText("battle:noPokeballForceFinalBoss");
|
||||||
} else {
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
} else if (battleType === BattleType.TRAINER) {
|
} else if (battleType === BattleType.TRAINER) {
|
||||||
this.queueShowText("battle:noPokeballTrainer");
|
this.queueShowText("battle:noPokeballTrainer");
|
||||||
@ -452,12 +450,10 @@ export class CommandPhase extends FieldPhase {
|
|||||||
) {
|
) {
|
||||||
if (restrictMasterBall) {
|
if (restrictMasterBall) {
|
||||||
this.queueShowText("battle:noPokeballStrongFinalBossCatchable");
|
this.queueShowText("battle:noPokeballStrongFinalBossCatchable");
|
||||||
return false;
|
} else if (cursor < PokeballType.MASTER_BALL) {
|
||||||
}
|
|
||||||
if (cursor < PokeballType.MASTER_BALL) {
|
|
||||||
this.queueShowText("battle:noPokeballStrong");
|
this.queueShowText("battle:noPokeballStrong");
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
globalScene.currentBattle.turnCommands[this.fieldIndex] = {
|
globalScene.currentBattle.turnCommands[this.fieldIndex] = {
|
||||||
|
Loading…
Reference in New Issue
Block a user