Add Jiameng Pass Ma Chao chapter

This commit is contained in:
2026-06-23 13:01:25 +09:00
parent aca7d6568a
commit edbdaac773
11 changed files with 878 additions and 40 deletions

View File

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