Add Bowang ambush sortie chapter

This commit is contained in:
2026-06-23 05:42:50 +09:00
parent 8d958f6932
commit 44009b3542
12 changed files with 1015 additions and 28 deletions

View File

@@ -2,6 +2,7 @@ import type { CampaignStep } from '../state/campaignState';
import {
defaultBattleScenario,
eighthBattleScenario,
eighteenthBattleScenario,
eleventhBattleScenario,
fifthBattleScenario,
fifteenthBattleScenario,
@@ -22,6 +23,8 @@ import {
import {
eighthBattleIntroPages,
eighthBattleVictoryPages,
eighteenthBattleIntroPages,
eighteenthBattleVictoryPages,
eleventhBattleIntroPages,
eleventhBattleVictoryPages,
fifthBattleIntroPages,
@@ -235,13 +238,24 @@ const sortieFlows: Record<string, SortieFlow> = {
},
[seventeenthBattleScenario.id]: {
afterBattleId: seventeenthBattleScenario.id,
eyebrow: '다음 장 준비',
title: '적벽으로 향하는 바람',
eyebrow: '다음 장',
title: eighteenthBattleScenario.title,
description:
'제갈량이 합류하며 유비군은 비로소 천하의 큰 판을 바라보게 됩니다. 다음 흐름은 형주의 불안과 강동의 바람이 맞물리는 적벽대전 준비로 이어집니다.',
rewardHint: '다음 장: 적벽대전 준비 중',
pages: seventeenthBattleVictoryPages,
unavailableNotice: '적벽대전 장은 다음 작업에서 이어집니다. 군영에서 제갈량과의 공명도를 다지고 출전 구성을 정비하십시오.'
'제갈량이 합류하며 유비군은 비로소 천하의 큰 판을 바라보게 됩니다. 조조군 선봉이 신야로 다가오자, 공명은 박망파의 숲길에서 첫 계책을 펼치려 합니다.',
rewardHint: `예상 보상: ${eighteenthBattleScenario.title} 개방 / 제갈량 책략 실전`,
nextBattleId: eighteenthBattleScenario.id,
campaignStep: 'eighteenth-battle',
pages: [...seventeenthBattleVictoryPages, ...eighteenthBattleIntroPages]
},
[eighteenthBattleScenario.id]: {
afterBattleId: eighteenthBattleScenario.id,
eyebrow: '다음 장 준비',
title: '강동으로 부는 바람',
description:
'박망파에서 조조군 선봉을 늦춘 유비군은 더 큰 남하를 막기 위해 강동과 손잡을 길을 찾아야 합니다. 다음 흐름은 장판파와 강동 사절, 그리고 적벽대전으로 이어집니다.',
rewardHint: '다음 장: 장판파와 강동 사절 준비 중',
pages: eighteenthBattleVictoryPages,
unavailableNotice: '장판파와 강동 사절 장은 다음 작업에서 이어집니다. 군영에서 제갈량의 책략과 장수들의 출전 구성을 정비하십시오.'
}
};