Add Xuzhou breakout chapter

This commit is contained in:
2026-06-23 02:09:38 +09:00
parent 91b8abc7e3
commit 6eacee48fc
11 changed files with 739 additions and 16 deletions

View File

@@ -8,6 +8,7 @@ import {
secondBattleScenario,
seventhBattleScenario,
sixthBattleScenario,
tenthBattleScenario,
thirdBattleScenario,
type BattleScenarioId
} from './battles';
@@ -27,6 +28,8 @@ import {
seventhBattleVictoryPages,
sixthBattleIntroPages,
sixthBattleVictoryPages,
tenthBattleIntroPages,
tenthBattleVictoryPages,
thirdBattleIntroPages,
thirdBattleVictoryPages,
type StoryPage
@@ -127,12 +130,22 @@ const sortieFlows: Record<string, SortieFlow> = {
},
[ninthBattleScenario.id]: {
afterBattleId: ninthBattleScenario.id,
eyebrow: '다음 전장',
title: tenthBattleScenario.title,
description: '장비의 성급함과 여포의 야심이 맞물려 서주는 무너집니다. 성을 되찾기보다 포위망을 뚫고 다음 길을 찾는 전투가 됩니다.',
rewardHint: `예상 보상: ${tenthBattleScenario.title} 개방`,
nextBattleId: tenthBattleScenario.id,
campaignStep: 'tenth-battle',
pages: [...ninthBattleVictoryPages, ...tenthBattleIntroPages]
},
[tenthBattleScenario.id]: {
afterBattleId: tenthBattleScenario.id,
eyebrow: '다음 장 준비',
title: '서주 상실의 전조',
description: '성문은 지켰지만 여포와 서주 내부의 불씨는 더 커졌습니다. 다음 흐름은 장비의 실책과 서주 상실로 이어집니다.',
rewardHint: '다음 장: 장비의 실책과 서주 상실 준비 중',
pages: ninthBattleVictoryPages,
unavailableNotice: '서주 상실 전투는 다음 작업에서 이어집니다. 군영에서 성장과 출전 구성을 정비하십시오.'
title: '조조 의탁의 길',
description: '서주를 잃은 유비군은 살아남은 병력과 백성을 추슬러 허도로 향할 길을 찾습니다. 다음 흐름은 조조 의탁과 그 안의 긴장으로 이어집니다.',
rewardHint: '다음 장: 조조 의탁 준비 중',
pages: tenthBattleVictoryPages,
unavailableNotice: '조조 의탁 장은 다음 작업에서 이어집니다. 군영에서 성장과 출전 구성을 정비하십시오.'
}
};