Split double boss HP bar segments

This commit is contained in:
Flashfyre 2024-03-29 10:29:19 -04:00
parent 4f62dec998
commit 2b213da4a6
1 changed files with 11 additions and 0 deletions

View File

@ -637,6 +637,17 @@ export class EncounterPhase extends BattlePhase {
if (battle.battleType === BattleType.TRAINER)
loadEnemyAssets.push(battle.trainer.loadAssets().then(() => battle.trainer.initSprite()));
else {
const bossCount = battle.enemyParty.filter(p => p.isBoss()).length;
if (bossCount > 1) {
for (let enemyPokemon of battle.enemyParty) {
if (enemyPokemon.isBoss()) {
enemyPokemon.setBoss(true, Math.ceil(enemyPokemon.bossSegments / bossCount));
enemyPokemon.initBattleInfo();
}
}
}
}
Promise.all(loadEnemyAssets).then(() => {
battle.enemyParty.forEach((enemyPokemon, e) => {