Files
heros/data/defs/skills.json

186 lines
3.9 KiB
JSON

{
"spark": {
"name": "섬뢰",
"kind": "damage",
"target": "enemy",
"mp_cost": 2,
"range": [1, 2],
"power": 5,
"stat": "int"
},
"fire_tactic": {
"name": "화계",
"kind": "damage",
"target": "enemy",
"mp_cost": 4,
"range": [1, 3],
"power": 8,
"stat": "int"
},
"blaze": {
"name": "염진",
"kind": "damage",
"target": "enemy",
"mp_cost": 7,
"range": [1, 3],
"area_shape": "diamond",
"area_radius": 1,
"power": 13,
"stat": "int"
},
"mend": {
"name": "소치",
"kind": "heal",
"target": "ally",
"mp_cost": 4,
"range": [0, 2],
"power": 12,
"stat": "int"
},
"great_mend": {
"name": "대치",
"kind": "heal",
"target": "ally",
"mp_cost": 7,
"range": [0, 2],
"area_shape": "diamond",
"area_radius": 1,
"power": 20,
"stat": "int"
},
"guard_order": {
"name": "수비령",
"kind": "support",
"target": "ally",
"mp_cost": 5,
"range": [0, 2],
"power": 0,
"stat": "int",
"effects": [
{ "type": "stat_bonus", "stat": "def", "amount": 4, "duration_turns": 1 }
]
},
"rally_order": {
"name": "분기령",
"kind": "support",
"target": "ally",
"mp_cost": 5,
"range": [0, 2],
"power": 0,
"stat": "int",
"effects": [
{ "type": "stat_bonus", "stat": "atk", "amount": 3, "duration_turns": 1 }
]
},
"march_order": {
"name": "행군령",
"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 }
]
},
"focus_order": {
"name": "집중령",
"kind": "support",
"target": "ally",
"mp_cost": 4,
"range": [0, 2],
"power": 0,
"stat": "int",
"effects": [
{ "type": "stat_bonus", "stat": "agi", "amount": 6, "duration_turns": 1 }
]
},
"disrupt_order": {
"name": "혼란령",
"kind": "support",
"target": "enemy",
"mp_cost": 5,
"range": [1, 3],
"power": 0,
"stat": "int",
"effects": [
{ "type": "stat_bonus", "stat": "atk", "amount": -3, "duration_turns": 2 }
]
},
"hamper_order": {
"name": "둔족령",
"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 }
]
},
"feint_order": {
"name": "허실령",
"kind": "support",
"target": "enemy",
"mp_cost": 4,
"range": [1, 3],
"power": 0,
"stat": "int",
"effects": [
{ "type": "stat_bonus", "stat": "agi", "amount": -6, "duration_turns": 2 }
]
},
"disarm_tactic": {
"name": "탈병계",
"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": "독무",
"kind": "support",
"target": "enemy",
"mp_cost": 6,
"range": [1, 3],
"area_shape": "diamond",
"area_radius": 1,
"power": 0,
"stat": "int",
"effects": [
{ "type": "damage_over_time", "status": "poison", "amount": 4, "duration_turns": 2 }
]
},
"seal_tactic": {
"name": "봉책계",
"kind": "support",
"target": "enemy",
"mp_cost": 6,
"range": [1, 3],
"power": 0,
"stat": "int",
"effects": [
{ "type": "action_lock", "status": "seal", "action": "skill", "duration_turns": 2 }
]
},
"snare_tactic": {
"name": "족쇄계",
"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 }
]
}
}