sonic-radiance/sonic-radiance.love/datas/gamedata/skills/attack.lua

37 lines
1.4 KiB
Lua
Raw Normal View History

-- A basic file describing the basic attack, in order to make it customizable one
-- day ?
-- Also serve as a tutoriel for how to create a file attack and choregraphy
return {
name = "attack", -- unused for this attack, but still usefull sometimes
fullname = "Spin Attack",
cost = 00, -- the pp cost of the attack. Will be ignored if it's set
-- as character default attack
description = "Spin to attack. Roll at the right time for more damages",
2020-07-20 12:24:26 +02:00
targetNumber = 1, -- 0 for targeting all ennemies
targetEnnemies = true,
choregraphy = { -- the main attack choregraphy
2020-07-25 17:07:53 +02:00
{"setAnimation", "none", "walk", false},
{"taggedAction", "playerMove", {"goTo", "none", "target", 0, 0, 0.6, false}},
{"wait", "none", 0.3},
{"setAnimation", "none", "spin", false},
{'playSFX', "none", 'spinrelease'},
2021-07-17 21:55:14 +02:00
{"waitFor", "none", "actionFinished:playerMove"},
{"sendDamage", "none", 100, "basic", "none", false},
{'addGFX', "sentDamage", 'hitGFX', "target", 0, 0, true, false},
{'playSFX', "sentDamage", 'hitconnect'},
2021-07-18 14:09:39 +02:00
{'jumpBack', "none", 4, 8, true},
{"wait", "none", 0.1},
2020-07-25 17:07:53 +02:00
{"setAnimation", "none", "walk", false},
{'goTo', "none", "start", 0, 0, 0.3, true},
{'setAnimation', "none", 'idle', false},
},
onContact = { -- if the attack move and touch multiple ennemies, you can add
-- specific effect when you touch the ennemy.
},
}