Add Luofeng Slope ambush chapter

This commit is contained in:
2026-06-23 10:09:41 +09:00
parent cc6365d5ba
commit 0872c584b4
11 changed files with 1250 additions and 34 deletions

View File

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