Add event inventory pickups

This commit is contained in:
2026-06-18 10:45:33 +09:00
parent cbfc221782
commit d69453472d
9 changed files with 119 additions and 16 deletions

View File

@@ -84,7 +84,8 @@
"once": true,
"when": { "type": "battle_start" },
"actions": [
{ "type": "log", "text": "Cao Cao engages the Yellow Turbans." }
{ "type": "log", "text": "Cao Cao engages the Yellow Turbans." },
{ "type": "log", "text": "A small supply cache is hidden in the northern woods." }
]
},
{
@@ -101,6 +102,15 @@
}
]
},
{
"id": "northern_woods_cache",
"once": true,
"when": { "type": "unit_reaches_tile", "team": "player", "pos": [3, 2] },
"actions": [
{ "type": "log", "text": "The northern woods cache is recovered." },
{ "type": "grant_item", "item_id": "bean" }
]
},
{
"id": "turn_2_warning",
"once": true,