aether-shards/src/assets/skills/skill_shield_bash.json

29 lines
547 B
JSON
Raw Normal View History

{
"id": "SKILL_SHIELD_BASH",
"name": "Shield Bash",
"description": "Strike an enemy with your shield, dealing damage and Stunning them.",
"type": "ACTIVE",
"costs": { "ap": 2 },
"cooldown_turns": 2,
"targeting": {
"range": 1,
"type": "ENEMY",
"line_of_sight": true
},
"effects": [
{
"type": "DAMAGE",
"power": 5,
"attribute": "attack",
"element": "PHYSICAL"
},
{
"type": "APPLY_STATUS",
"status_id": "STATUS_STUN",
"chance": 1.0,
"duration": 1
}
]
}