Add snare movement lock tactic

This commit is contained in:
2026-06-18 10:11:16 +09:00
parent dcf45a3cd1
commit 14ca76d8cb
11 changed files with 121 additions and 55 deletions

View File

@@ -160,7 +160,7 @@
"move_type": "foot",
"move": 4,
"attack_range": [1, 1],
"skills": ["spark", "fire_tactic", "mend", "guard_order", "rally_order", "disrupt_order", "poison_mist", "seal_tactic"],
"skills": ["spark", "fire_tactic", "mend", "guard_order", "rally_order", "disrupt_order", "poison_mist", "seal_tactic", "snare_tactic"],
"growth": { "hp": "C", "mp": "A", "atk": "E", "def": "D", "int": "A", "agi": "C" },
"base_bonus": { "hp": -2, "mp": 8, "atk": -2, "def": -1, "int": 2 },
"equipment_slots": {
@@ -176,7 +176,7 @@
"move_type": "foot",
"move": 4,
"attack_range": [1, 1],
"skills": ["spark", "fire_tactic", "mend", "great_mend", "guard_order", "rally_order", "disrupt_order", "poison_mist", "seal_tactic"],
"skills": ["spark", "fire_tactic", "mend", "great_mend", "guard_order", "rally_order", "disrupt_order", "poison_mist", "seal_tactic", "snare_tactic"],
"growth": { "hp": "B", "mp": "A", "atk": "E", "def": "C", "int": "A", "agi": "C" },
"base_bonus": { "hp": 2, "mp": 6, "atk": -2, "def": 1, "int": 2 },
"equipment_slots": {

View File

@@ -117,7 +117,8 @@
"uses": 1,
"effects": [
{ "type": "cure_status", "status": "poison" },
{ "type": "cure_status", "status": "seal" }
{ "type": "cure_status", "status": "seal" },
{ "type": "cure_status", "status": "snare" }
],
"price": 140
},

View File

@@ -103,5 +103,17 @@
"effects": [
{ "type": "action_lock", "status": "seal", "action": "skill", "duration_turns": 2 }
]
},
"snare_tactic": {
"name": "Snare Tactic",
"kind": "support",
"target": "enemy",
"mp_cost": 5,
"range": [1, 3],
"power": 0,
"stat": "int",
"effects": [
{ "type": "action_lock", "status": "snare", "action": "move", "duration_turns": 2 }
]
}
}