Add movement order tactics

This commit is contained in:
2026-06-18 10:18:07 +09:00
parent 14ca76d8cb
commit feae7dd167
9 changed files with 42 additions and 14 deletions

View File

@@ -5,7 +5,7 @@
"move_type": "foot",
"move": 4,
"attack_range": [1, 1],
"skills": ["spark", "fire_tactic", "mend", "guard_order", "rally_order", "disrupt_order"],
"skills": ["spark", "fire_tactic", "mend", "guard_order", "rally_order", "march_order", "disrupt_order", "hamper_order"],
"growth": { "hp": "B", "mp": "B", "atk": "B", "def": "B", "int": "A", "agi": "B" },
"base_bonus": { "hp": 0, "atk": 0, "def": 0 },
"equipment_slots": {
@@ -21,7 +21,7 @@
"move_type": "foot",
"move": 5,
"attack_range": [1, 1],
"skills": ["spark", "fire_tactic", "mend", "great_mend", "guard_order", "rally_order", "disrupt_order"],
"skills": ["spark", "fire_tactic", "mend", "great_mend", "guard_order", "rally_order", "march_order", "disrupt_order", "hamper_order"],
"growth": { "hp": "A", "mp": "B", "atk": "A", "def": "B", "int": "A", "agi": "B" },
"base_bonus": { "hp": 4, "atk": 1, "def": 1, "int": 1 },
"equipment_slots": {
@@ -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", "snare_tactic"],
"skills": ["spark", "fire_tactic", "mend", "guard_order", "rally_order", "march_order", "disrupt_order", "hamper_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", "snare_tactic"],
"skills": ["spark", "fire_tactic", "mend", "great_mend", "guard_order", "rally_order", "march_order", "disrupt_order", "hamper_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

@@ -68,6 +68,18 @@
{ "type": "stat_bonus", "stat": "atk", "amount": 3, "duration_turns": 1 }
]
},
"march_order": {
"name": "March Order",
"kind": "support",
"target": "ally",
"mp_cost": 5,
"range": [0, 2],
"power": 0,
"stat": "int",
"effects": [
{ "type": "stat_bonus", "stat": "move", "amount": 1, "duration_turns": 1 }
]
},
"disrupt_order": {
"name": "Disrupt Order",
"kind": "support",
@@ -80,6 +92,18 @@
{ "type": "stat_bonus", "stat": "atk", "amount": -3, "duration_turns": 2 }
]
},
"hamper_order": {
"name": "Hamper Order",
"kind": "support",
"target": "enemy",
"mp_cost": 5,
"range": [1, 3],
"power": 0,
"stat": "int",
"effects": [
{ "type": "stat_bonus", "stat": "move", "amount": -1, "duration_turns": 2 }
]
},
"poison_mist": {
"name": "Poison Mist",
"kind": "support",