Add Hanzhong decisive battle chapter

This commit is contained in:
2026-06-23 14:09:12 +09:00
parent 24b7db0b14
commit b4c34afeed
11 changed files with 894 additions and 41 deletions

View File

@@ -24,6 +24,7 @@ import {
thirtySecondBattleScenario,
thirtyThirdBattleScenario,
thirtySixthBattleScenario,
thirtySeventhBattleScenario,
thirtiethBattleScenario,
twentyEighthBattleScenario,
twentyFirstBattleScenario,
@@ -371,7 +372,8 @@ export class TitleScene extends Phaser.Scene {
campaign.step === 'thirty-third-camp' ||
campaign.step === 'thirty-fourth-camp' ||
campaign.step === 'thirty-fifth-camp' ||
campaign.step === 'thirty-sixth-camp'
campaign.step === 'thirty-sixth-camp' ||
campaign.step === 'thirty-seventh-camp'
) {
this.scene.start('CampScene');
return;
@@ -557,6 +559,11 @@ export class TitleScene extends Phaser.Scene {
return;
}
if (campaign.step === 'thirty-seventh-battle') {
this.scene.start('BattleScene', { battleId: thirtySeventhBattleScenario.id });
return;
}
if (campaign.step === 'first-victory-story') {
this.scene.start('StoryScene', { pages: firstBattleVictoryPages, nextScene: 'TitleScene' });
return;