mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-06 08:07:42 +00:00
- remove any `.js` extension imports - remove unncessary dynamic imports of `modifier.ts` file. The file was being imported statically & dynamically. Made it pure static - increase vite chunk-size warning limit Co-authored-by: Mumble <171087428+frutescens@users.noreply.github.com>
15 lines
303 B
TypeScript
15 lines
303 B
TypeScript
import BattleScene from "#app/battle-scene";
|
|
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());
|
|
}
|
|
}
|