Add Jing Province entry chapter

This commit is contained in:
2026-06-23 07:42:11 +09:00
parent 302f0e0a76
commit d26a16d2a1
11 changed files with 1120 additions and 29 deletions

View File

@@ -20,6 +20,7 @@ import {
thirteenthBattleScenario,
twentyFirstBattleScenario,
twentySecondBattleScenario,
twentyThirdBattleScenario,
twentiethBattleScenario,
twelfthBattleScenario,
thirdBattleScenario
@@ -343,7 +344,8 @@ export class TitleScene extends Phaser.Scene {
campaign.step === 'nineteenth-camp' ||
campaign.step === 'twentieth-camp' ||
campaign.step === 'twenty-first-camp' ||
campaign.step === 'twenty-second-camp'
campaign.step === 'twenty-second-camp' ||
campaign.step === 'twenty-third-camp'
) {
this.scene.start('CampScene');
return;
@@ -459,6 +461,11 @@ export class TitleScene extends Phaser.Scene {
return;
}
if (campaign.step === 'twenty-third-battle') {
this.scene.start('BattleScene', { battleId: twentyThirdBattleScenario.id });
return;
}
if (campaign.step === 'first-victory-story') {
this.scene.start('StoryScene', { pages: firstBattleVictoryPages, nextScene: 'TitleScene' });
return;