From b14b614d94d1ceb5c6ecf14f80fd7174ab900aa3 Mon Sep 17 00:00:00 2001 From: gahusb Date: Wed, 10 Jun 2026 00:48:46 +0900 Subject: [PATCH] =?UTF-8?q?feat(combat-data):=20=EB=A7=B5=20=EB=AA=AC?= =?UTF-8?q?=EC=8A=A4=ED=84=B0=20=EC=A0=81=20=ED=83=80=EC=9E=85(=EC=A3=BC?= =?UTF-8?q?=ED=99=A9/=ED=8C=8C=EB=9E=80=EB=B2=84=EC=84=AF)=20+=20simEncoun?= =?UTF-8?q?ter=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/enemies.json | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/data/enemies.json b/data/enemies.json index 82d8ff6..47263c6 100644 --- a/data/enemies.json +++ b/data/enemies.json @@ -27,7 +27,25 @@ { "kind": "Attack", "value": 10 }, { "kind": "Attack", "value": 22 } ] + }, + "orange_mushroom": { + "name": "주황버섯", + "maxHp": 16, + "intents": [ + { "kind": "Attack", "value": 5 }, + { "kind": "Defend", "value": 4 }, + { "kind": "Attack", "value": 7 } + ] + }, + "blue_mushroom": { + "name": "파란버섯", + "maxHp": 22, + "intents": [ + { "kind": "Attack", "value": 8 }, + { "kind": "Attack", "value": 4 } + ] } }, - "activeEnemy": "slime" + "activeEnemy": "slime", + "simEncounter": ["orange_mushroom", "orange_mushroom", "blue_mushroom"] }