Require castle capture in first battle

This commit is contained in:
2026-06-19 12:39:49 +09:00
parent 77db064d03
commit 5a52ae264e
2 changed files with 34 additions and 1 deletions

View File

@@ -6,7 +6,18 @@
"defeat": "조조가 퇴각하거나 제16턴이 시작되면 패한다."
},
"conditions": {
"victory": { "type": "all_units_defeated", "team": "enemy" },
"victory": {
"type": "all",
"conditions": [
{ "type": "all_units_defeated", "team": "enemy" },
{
"type": "unit_reaches_tile",
"team": "player",
"unit_ids": ["cao_cao", "xiahou_dun"],
"cells": [[12, 0], [13, 0], [12, 1], [13, 1]]
}
]
},
"defeat": [
{ "type": "any_officer_defeated", "team": "player", "officer_ids": ["cao_cao"] },
{ "type": "turn_reached", "turn": 16, "team": "player" }