Add disarm attack lock tactic

This commit is contained in:
2026-06-18 10:32:32 +09:00
parent b15c5f6869
commit cbfc221782
11 changed files with 68 additions and 26 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", "march_order", "focus_order", "disrupt_order", "hamper_order", "feint_order", "poison_mist", "seal_tactic", "snare_tactic"],
"skills": ["spark", "fire_tactic", "mend", "guard_order", "rally_order", "march_order", "focus_order", "disrupt_order", "hamper_order", "feint_order", "disarm_tactic", "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", "march_order", "focus_order", "disrupt_order", "hamper_order", "feint_order", "poison_mist", "seal_tactic", "snare_tactic"],
"skills": ["spark", "fire_tactic", "mend", "great_mend", "guard_order", "rally_order", "march_order", "focus_order", "disrupt_order", "hamper_order", "feint_order", "disarm_tactic", "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

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

View File

@@ -128,6 +128,18 @@
{ "type": "stat_bonus", "stat": "agi", "amount": -6, "duration_turns": 2 }
]
},
"disarm_tactic": {
"name": "Disarm Tactic",
"kind": "support",
"target": "enemy",
"mp_cost": 5,
"range": [1, 3],
"power": 0,
"stat": "int",
"effects": [
{ "type": "action_lock", "status": "disarm", "action": "attack", "duration_turns": 2 }
]
},
"poison_mist": {
"name": "Poison Mist",
"kind": "support",