Expose reserve drill plan lines in debug

This commit is contained in:
2026-07-09 14:08:50 +09:00
parent eea32a7075
commit 766dd1bee5
2 changed files with 6 additions and 1 deletions

View File

@@ -211,6 +211,7 @@ type SortieFocusedUnitSummary = SortieUnitTacticalSummary & {
reserveTrainingFocusId: CampaignReserveTrainingFocusId;
reserveTrainingFocusLabel: string;
reserveTrainingBondPreviewLine: string;
reserveTrainingPlanLine: string;
terrainScore: number;
terrainGrade: string;
equipment: {
@@ -13205,6 +13206,7 @@ export class CampScene extends Phaser.Scene {
reserveTrainingFocusId: reserveTrainingFocus.id,
reserveTrainingFocusLabel: reserveTrainingFocus.label,
reserveTrainingBondPreviewLine: this.reserveTrainingBondPreviewLine(unit),
reserveTrainingPlanLine: this.reserveTrainingPlanLine(unit),
terrainScore,
terrainGrade: this.sortieTerrainGrade(terrainScore),
statLine: summary.statLine,
@@ -15800,6 +15802,7 @@ export class CampScene extends Phaser.Scene {
reserveTrainingFocusId: reserveTrainingFocus.id,
reserveTrainingFocusLabel: reserveTrainingFocus.label,
reserveTrainingBondPreviewLine: this.reserveTrainingBondPreviewLine(unit),
reserveTrainingPlanLine: this.reserveTrainingPlanLine(unit),
recommended: Boolean(this.sortieRecommendation(unit.id)),
recommendationReason: this.sortieRecommendation(unit.id)?.reason ?? null,
statLine: summary.statLine,