pokerogue/src/phases/hide-party-exp-bar-phase.ts

15 lines
303 B
TypeScript
Raw Normal View History

import BattleScene from "#app/battle-scene";
2024-08-19 03:23:52 +01:00
import { BattlePhase } from "./battle-phase";
export class HidePartyExpBarPhase extends BattlePhase {
constructor(scene: BattleScene) {
super(scene);
}
start() {
super.start();
this.scene.partyExpBar.hide().then(() => this.end());
}
}