sonic-radiance/sonic-radiance.love/datas/gamedata/skills/spinattack.lua
2019-08-22 21:32:52 +02:00

17 lines
533 B
Lua

return {
name = "spinattack",
cost = 05,
target = nil, -- No targeting capacity
effectArea = {1, 0, "line", 5, true}, -- which area is affected by the attack
choregraphy = {
{"setAnimation", "none", "spindash", false},
{"wait", "none", 0.5},
{"setAnimation", "none", "spin", false},
{"dashForward", "none", 12, true},
{'sendDamage', 120, 100, false, false},
{'addGFX', "sentDamage", 'hitGFX', 0.75, 0, true, false},
{'jumpBack', "none", true},
{'setAnimation', "none", 'idle', false},
}
}