Add Cao Cao refuge road chapter

This commit is contained in:
2026-06-23 02:21:23 +09:00
parent 6eacee48fc
commit 683357f6a7
11 changed files with 748 additions and 16 deletions

View File

@@ -2,6 +2,7 @@ import type { CampaignStep } from '../state/campaignState';
import {
defaultBattleScenario,
eighthBattleScenario,
eleventhBattleScenario,
fifthBattleScenario,
fourthBattleScenario,
ninthBattleScenario,
@@ -15,6 +16,8 @@ import {
import {
eighthBattleIntroPages,
eighthBattleVictoryPages,
eleventhBattleIntroPages,
eleventhBattleVictoryPages,
fifthBattleIntroPages,
fifthBattleVictoryPages,
firstBattleVictoryPages,
@@ -140,12 +143,22 @@ const sortieFlows: Record<string, SortieFlow> = {
},
[tenthBattleScenario.id]: {
afterBattleId: tenthBattleScenario.id,
eyebrow: '다음 전장',
title: eleventhBattleScenario.title,
description: '조조는 유비군을 받아들이되 허도 입성로의 원술 잔군을 치게 합니다. 의탁은 시작되지만, 동시에 유비군의 군율과 힘을 재는 시험입니다.',
rewardHint: `예상 보상: ${eleventhBattleScenario.title} 개방`,
nextBattleId: eleventhBattleScenario.id,
campaignStep: 'eleventh-battle',
pages: [...tenthBattleVictoryPages, ...eleventhBattleIntroPages]
},
[eleventhBattleScenario.id]: {
afterBattleId: eleventhBattleScenario.id,
eyebrow: '다음 장 준비',
title: '조조 의탁의 길',
description: '서주를 잃은 유비군은 살아남은 병력과 백성을 추슬러 허도로 향할 길을 찾습니다. 다음 흐름은 조조 의탁과 그 안의 긴장으로 이어집니다.',
rewardHint: '다음 장: 조조 의탁 준비 중',
pages: tenthBattleVictoryPages,
unavailableNotice: '조조 의탁 장은 다음 작업에서 이어집니다. 군영에서 성장과 출전 구성을 정비하십시오.'
title: '조조의 그늘 아래',
description: '허도 입성로를 열어 조조의 장막에 들어섰지만, 유비군은 보호와 감시를 동시에 받게 됩니다. 다음 흐름은 조조 밑에서 기회를 기다리는 장으로 이어집니다.',
rewardHint: '다음 장: 조조 휘하의 긴장 준비 중',
pages: eleventhBattleVictoryPages,
unavailableNotice: '조조 휘하 장은 다음 작업에서 이어집니다. 군영에서 성장과 출전 구성을 정비하십시오.'
}
};