Add Changsha veteran chapter

This commit is contained in:
2026-06-23 08:30:43 +09:00
parent 98876673a8
commit 2402e1c38f
11 changed files with 1217 additions and 31 deletions

View File

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