Add Red Cliffs fire attack chapter

This commit is contained in:
2026-06-23 07:15:43 +09:00
parent 7f80600d0c
commit 302f0e0a76
11 changed files with 1059 additions and 24 deletions

View File

@@ -19,6 +19,7 @@ import {
tenthBattleScenario,
thirteenthBattleScenario,
twentyFirstBattleScenario,
twentySecondBattleScenario,
twentiethBattleScenario,
twelfthBattleScenario,
thirdBattleScenario
@@ -341,7 +342,8 @@ export class TitleScene extends Phaser.Scene {
campaign.step === 'eighteenth-camp' ||
campaign.step === 'nineteenth-camp' ||
campaign.step === 'twentieth-camp' ||
campaign.step === 'twenty-first-camp'
campaign.step === 'twenty-first-camp' ||
campaign.step === 'twenty-second-camp'
) {
this.scene.start('CampScene');
return;
@@ -452,6 +454,11 @@ export class TitleScene extends Phaser.Scene {
return;
}
if (campaign.step === 'twenty-second-battle') {
this.scene.start('BattleScene', { battleId: twentySecondBattleScenario.id });
return;
}
if (campaign.step === 'first-victory-story') {
this.scene.start('StoryScene', { pages: firstBattleVictoryPages, nextScene: 'TitleScene' });
return;