mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-11-25 04:28:17 +01:00
12 lines
286 B
TypeScript
12 lines
286 B
TypeScript
import { globalScene } from "#app/global-scene";
|
|
import { Phase } from "#app/phase";
|
|
import { Mode } from "#app/ui/ui";
|
|
|
|
export class EndEvolutionPhase extends Phase {
|
|
start() {
|
|
super.start();
|
|
|
|
globalScene.ui.setModeForceTransition(Mode.MESSAGE).then(() => this.end());
|
|
}
|
|
}
|