aether-shards/src/assets/skills/skill_warp_strike.json
Matthew Mone 56aa6d79df Add Combat Skill Usage and Targeting System Specifications
Introduce detailed specifications for combat skill usage, including interaction flow, state machine updates, and the skill targeting system. Implement the SkillTargetingSystem to handle targeting validation and area of effect calculations. Enhance the CombatHUD specification to define the UI overlay for combat phases. Integrate these systems into the GameLoop for improved combat mechanics and user experience.
2025-12-23 21:01:54 -08:00

23 lines
483 B
JSON

{
"id": "SKILL_WARP_STRIKE",
"name": "Warp Strike",
"class": "Battle Mage",
"description": "Teleport to an enemy and immediately attack with melee weapon.",
"type": "ACTIVE",
"costs": { "ap": 3 },
"cooldown_turns": 3,
"targeting": {
"range": 5,
"type": "ENEMY"
},
"effects": [
{ "type": "TELEPORT", "location": "ADJACENT_TO_TARGET" },
{
"type": "DAMAGE",
"power": 10,
"attribute": "attack",
"element": "MAGIC"
}
]
}