mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-11-30 02:36:11 +00:00
balance changes and bug fixes to MEs
This commit is contained in:
parent
709e1b3148
commit
fb9d026c1f
@ -51,6 +51,7 @@ import {
|
|||||||
} from "#app/phases/mystery-encounter-phases";
|
} from "#app/phases/mystery-encounter-phases";
|
||||||
import { LearnMovePhase } from "#app/phases/learn-move-phase";
|
import { LearnMovePhase } from "#app/phases/learn-move-phase";
|
||||||
import { ModifierRewardPhase } from "#app/phases/modifier-reward-phase";
|
import { ModifierRewardPhase } from "#app/phases/modifier-reward-phase";
|
||||||
|
import { PartyExpPhase } from "#app/phases/party-exp-phase";
|
||||||
|
|
||||||
export interface PromptHandler {
|
export interface PromptHandler {
|
||||||
phaseTarget?;
|
phaseTarget?;
|
||||||
@ -125,7 +126,8 @@ export default class PhaseInterceptor {
|
|||||||
[MysteryEncounterRewardsPhase, this.startPhase],
|
[MysteryEncounterRewardsPhase, this.startPhase],
|
||||||
[PostMysteryEncounterPhase, this.startPhase],
|
[PostMysteryEncounterPhase, this.startPhase],
|
||||||
[LearnMovePhase, this.startPhase],
|
[LearnMovePhase, this.startPhase],
|
||||||
[ModifierRewardPhase, this.startPhase]
|
[ModifierRewardPhase, this.startPhase],
|
||||||
|
[PartyExpPhase, this.startPhase]
|
||||||
];
|
];
|
||||||
|
|
||||||
private endBySetMode = [
|
private endBySetMode = [
|
||||||
|
Loading…
Reference in New Issue
Block a user