2019-08-19 11:54:06 +02:00
|
|
|
return {
|
2019-08-22 21:32:52 +02:00
|
|
|
name = "spinattack",
|
|
|
|
cost = 05,
|
2019-08-19 11:54:06 +02:00
|
|
|
target = nil, -- No targeting capacity
|
2019-08-24 21:49:16 +02:00
|
|
|
effectArea = {0, 0, "line", 5, true}, -- which area is affected by the attack
|
2019-08-19 11:54:06 +02:00
|
|
|
choregraphy = {
|
|
|
|
{"setAnimation", "none", "spindash", false},
|
2019-08-31 15:44:34 +02:00
|
|
|
{'playSFX', "none", 'spincharge'},
|
2019-08-19 11:54:06 +02:00
|
|
|
{"wait", "none", 0.5},
|
|
|
|
{"setAnimation", "none", "spin", false},
|
2019-08-31 15:44:34 +02:00
|
|
|
{'playSFX', "none", 'spinrelease'},
|
2019-08-19 11:54:06 +02:00
|
|
|
{"dashForward", "none", 12, true},
|
2019-08-24 22:21:07 +02:00
|
|
|
{"sendDamageFromPos", "none", 0, 0, 120, 100, false, false, true},
|
2019-08-24 21:49:16 +02:00
|
|
|
{'addGFX', "sentDamage", 'hitGFX', 0, 0, true, false},
|
2019-08-31 15:44:34 +02:00
|
|
|
{'playSFX', "sentDamage", 'hitconnect'},
|
2019-08-19 11:54:06 +02:00
|
|
|
{'jumpBack', "none", true},
|
|
|
|
{'setAnimation', "none", 'idle', false},
|
|
|
|
}
|
|
|
|
}
|