Expose reserve bond partner counts

This commit is contained in:
2026-07-09 14:11:09 +09:00
parent a074effbad
commit ddbb554998
2 changed files with 5 additions and 0 deletions

View File

@@ -211,6 +211,7 @@ type SortieFocusedUnitSummary = SortieUnitTacticalSummary & {
reserveTrainingFocusId: CampaignReserveTrainingFocusId;
reserveTrainingFocusLabel: string;
reserveTrainingBondPreviewLine: string;
reserveTrainingBondPartnerCount: number;
reserveTrainingPlanLine: string;
terrainScore: number;
terrainGrade: string;
@@ -13206,6 +13207,7 @@ export class CampScene extends Phaser.Scene {
reserveTrainingFocusId: reserveTrainingFocus.id,
reserveTrainingFocusLabel: reserveTrainingFocus.label,
reserveTrainingBondPreviewLine: this.reserveTrainingBondPreviewLine(unit),
reserveTrainingBondPartnerCount: this.reserveTrainingBondPartnerNames(unit).length,
reserveTrainingPlanLine: this.reserveTrainingPlanLine(unit),
terrainScore,
terrainGrade: this.sortieTerrainGrade(terrainScore),
@@ -15807,6 +15809,7 @@ export class CampScene extends Phaser.Scene {
reserveTrainingFocusId: reserveTrainingFocus.id,
reserveTrainingFocusLabel: reserveTrainingFocus.label,
reserveTrainingBondPreviewLine: this.reserveTrainingBondPreviewLine(unit),
reserveTrainingBondPartnerCount: this.reserveTrainingBondPartnerNames(unit).length,
reserveTrainingPlanLine: this.reserveTrainingPlanLine(unit),
recommended: Boolean(this.sortieRecommendation(unit.id)),
recommendationReason: this.sortieRecommendation(unit.id)?.reason ?? null,