Add Luo Castle outer wall chapter

This commit is contained in:
2026-06-23 09:43:18 +09:00
parent 8349d1044f
commit cc6365d5ba
11 changed files with 1270 additions and 34 deletions

View File

@@ -24,6 +24,7 @@ import {
twentyThirdBattleScenario,
twentyFifthBattleScenario,
twentyFourthBattleScenario,
twentyNinthBattleScenario,
twentySixthBattleScenario,
twentySeventhBattleScenario,
twentiethBattleScenario,
@@ -355,7 +356,8 @@ export class TitleScene extends Phaser.Scene {
campaign.step === 'twenty-fifth-camp' ||
campaign.step === 'twenty-sixth-camp' ||
campaign.step === 'twenty-seventh-camp' ||
campaign.step === 'twenty-eighth-camp'
campaign.step === 'twenty-eighth-camp' ||
campaign.step === 'twenty-ninth-camp'
) {
this.scene.start('CampScene');
return;
@@ -501,6 +503,11 @@ export class TitleScene extends Phaser.Scene {
return;
}
if (campaign.step === 'twenty-ninth-battle') {
this.scene.start('BattleScene', { battleId: twentyNinthBattleScenario.id });
return;
}
if (campaign.step === 'first-victory-story') {
this.scene.start('StoryScene', { pages: firstBattleVictoryPages, nextScene: 'TitleScene' });
return;