Add Yangping Pass scout chapter

This commit is contained in:
2026-06-23 13:22:13 +09:00
parent edbdaac773
commit c724d9d48f
12 changed files with 890 additions and 39 deletions

View File

@@ -18,6 +18,7 @@ import {
seventeenthBattleScenario,
tenthBattleScenario,
thirteenthBattleScenario,
thirtyFifthBattleScenario,
thirtyFourthBattleScenario,
thirtyFirstBattleScenario,
thirtySecondBattleScenario,
@@ -367,7 +368,8 @@ export class TitleScene extends Phaser.Scene {
campaign.step === 'thirty-first-camp' ||
campaign.step === 'thirty-second-camp' ||
campaign.step === 'thirty-third-camp' ||
campaign.step === 'thirty-fourth-camp'
campaign.step === 'thirty-fourth-camp' ||
campaign.step === 'thirty-fifth-camp'
) {
this.scene.start('CampScene');
return;
@@ -543,6 +545,11 @@ export class TitleScene extends Phaser.Scene {
return;
}
if (campaign.step === 'thirty-fifth-battle') {
this.scene.start('BattleScene', { battleId: thirtyFifthBattleScenario.id });
return;
}
if (campaign.step === 'first-victory-story') {
this.scene.start('StoryScene', { pages: firstBattleVictoryPages, nextScene: 'TitleScene' });
return;