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