Expose sortie plan warning count

This commit is contained in:
2026-07-09 14:18:25 +09:00
parent 18133dc538
commit 01181a066a
2 changed files with 3 additions and 0 deletions

View File

@@ -298,6 +298,7 @@ type SortiePlanSummary = {
objectiveLine: string;
formationSlots: SortieFormationSlot[];
warningLine: string;
warningCount: number;
warnings: string[];
};
@@ -13459,6 +13460,7 @@ export class CampScene extends Phaser.Scene {
objectiveLine: scenario ? `${scenario.title} · ${scenario.victoryConditionLabel}` : `${flow.title} · 군영 의정`,
formationSlots,
warningLine: warnings[0] ?? (hasBattle ? '배치 균형 양호' : '동행 균형 양호'),
warningCount: warnings.length,
warnings
};
}