Add Mianzhu Gate sortie chapter

This commit is contained in:
2026-06-23 12:15:04 +09:00
parent 004ec3cfff
commit 9ac621da76
11 changed files with 870 additions and 35 deletions

View File

@@ -19,6 +19,7 @@ import {
tenthBattleScenario,
thirteenthBattleScenario,
thirtyFirstBattleScenario,
thirtySecondBattleScenario,
thirtiethBattleScenario,
twentyEighthBattleScenario,
twentyFirstBattleScenario,
@@ -361,7 +362,8 @@ export class TitleScene extends Phaser.Scene {
campaign.step === 'twenty-eighth-camp' ||
campaign.step === 'twenty-ninth-camp' ||
campaign.step === 'thirtieth-camp' ||
campaign.step === 'thirty-first-camp'
campaign.step === 'thirty-first-camp' ||
campaign.step === 'thirty-second-camp'
) {
this.scene.start('CampScene');
return;
@@ -522,6 +524,11 @@ export class TitleScene extends Phaser.Scene {
return;
}
if (campaign.step === 'thirty-second-battle') {
this.scene.start('BattleScene', { battleId: thirtySecondBattleScenario.id });
return;
}
if (campaign.step === 'first-victory-story') {
this.scene.start('StoryScene', { pages: firstBattleVictoryPages, nextScene: 'TitleScene' });
return;