Add Fu Pass entry chapter

This commit is contained in:
2026-06-23 09:14:41 +09:00
parent 17cbaab55d
commit 8349d1044f
11 changed files with 1260 additions and 34 deletions

View File

@@ -18,6 +18,7 @@ import {
seventeenthBattleScenario,
tenthBattleScenario,
thirteenthBattleScenario,
twentyEighthBattleScenario,
twentyFirstBattleScenario,
twentySecondBattleScenario,
twentyThirdBattleScenario,
@@ -353,7 +354,8 @@ export class TitleScene extends Phaser.Scene {
campaign.step === 'twenty-fourth-camp' ||
campaign.step === 'twenty-fifth-camp' ||
campaign.step === 'twenty-sixth-camp' ||
campaign.step === 'twenty-seventh-camp'
campaign.step === 'twenty-seventh-camp' ||
campaign.step === 'twenty-eighth-camp'
) {
this.scene.start('CampScene');
return;
@@ -494,6 +496,11 @@ export class TitleScene extends Phaser.Scene {
return;
}
if (campaign.step === 'twenty-eighth-battle') {
this.scene.start('BattleScene', { battleId: twentyEighthBattleScenario.id });
return;
}
if (campaign.step === 'first-victory-story') {
this.scene.start('StoryScene', { pages: firstBattleVictoryPages, nextScene: 'TitleScene' });
return;