Add Guiyang persuasion chapter

This commit is contained in:
2026-06-23 07:58:54 +09:00
parent d26a16d2a1
commit f8cc2f329c
11 changed files with 1134 additions and 28 deletions

View File

@@ -21,6 +21,7 @@ import {
twentyFirstBattleScenario,
twentySecondBattleScenario,
twentyThirdBattleScenario,
twentyFourthBattleScenario,
twentiethBattleScenario,
twelfthBattleScenario,
thirdBattleScenario
@@ -345,7 +346,8 @@ export class TitleScene extends Phaser.Scene {
campaign.step === 'twentieth-camp' ||
campaign.step === 'twenty-first-camp' ||
campaign.step === 'twenty-second-camp' ||
campaign.step === 'twenty-third-camp'
campaign.step === 'twenty-third-camp' ||
campaign.step === 'twenty-fourth-camp'
) {
this.scene.start('CampScene');
return;
@@ -466,6 +468,11 @@ export class TitleScene extends Phaser.Scene {
return;
}
if (campaign.step === 'twenty-fourth-battle') {
this.scene.start('BattleScene', { battleId: twentyFourthBattleScenario.id });
return;
}
if (campaign.step === 'first-victory-story') {
this.scene.start('StoryScene', { pages: firstBattleVictoryPages, nextScene: 'TitleScene' });
return;