Add Dingjun Mountain vanguard chapter

This commit is contained in:
2026-06-23 13:38:49 +09:00
parent c724d9d48f
commit 24b7db0b14
12 changed files with 894 additions and 39 deletions

View File

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