Add Yi Province relief road chapter

This commit is contained in:
2026-06-23 08:55:39 +09:00
parent 2402e1c38f
commit 17cbaab55d
11 changed files with 1251 additions and 49 deletions

View File

@@ -24,6 +24,7 @@ import {
twentyFifthBattleScenario,
twentyFourthBattleScenario,
twentySixthBattleScenario,
twentySeventhBattleScenario,
twentiethBattleScenario,
twelfthBattleScenario,
thirdBattleScenario
@@ -351,7 +352,8 @@ export class TitleScene extends Phaser.Scene {
campaign.step === 'twenty-third-camp' ||
campaign.step === 'twenty-fourth-camp' ||
campaign.step === 'twenty-fifth-camp' ||
campaign.step === 'twenty-sixth-camp'
campaign.step === 'twenty-sixth-camp' ||
campaign.step === 'twenty-seventh-camp'
) {
this.scene.start('CampScene');
return;
@@ -487,6 +489,11 @@ export class TitleScene extends Phaser.Scene {
return;
}
if (campaign.step === 'twenty-seventh-battle') {
this.scene.start('BattleScene', { battleId: twentySeventhBattleScenario.id });
return;
}
if (campaign.step === 'first-victory-story') {
this.scene.start('StoryScene', { pages: firstBattleVictoryPages, nextScene: 'TitleScene' });
return;