Add Fan Castle vanguard sortie chapter

This commit is contained in:
2026-06-23 15:46:28 +09:00
parent 8585fec6b5
commit fe1f897609
11 changed files with 935 additions and 55 deletions

View File

@@ -22,6 +22,7 @@ import {
thirtyFifthBattleScenario,
thirtyFourthBattleScenario,
thirtyFirstBattleScenario,
thirtyNinthBattleScenario,
thirtySecondBattleScenario,
thirtyThirdBattleScenario,
thirtySixthBattleScenario,
@@ -376,6 +377,7 @@ export class TitleScene extends Phaser.Scene {
campaign.step === 'thirty-sixth-camp' ||
campaign.step === 'thirty-seventh-camp' ||
campaign.step === 'thirty-eighth-camp' ||
campaign.step === 'thirty-ninth-camp' ||
campaign.step === 'hanzhong-king-camp' ||
campaign.step === 'shu-han-foundation-camp'
) {
@@ -573,6 +575,11 @@ export class TitleScene extends Phaser.Scene {
return;
}
if (campaign.step === 'thirty-ninth-battle') {
this.scene.start('BattleScene', { battleId: thirtyNinthBattleScenario.id });
return;
}
if (campaign.step === 'first-victory-story') {
this.scene.start('StoryScene', { pages: firstBattleVictoryPages, nextScene: 'TitleScene' });
return;