fix(skills): use the right datas
This commit is contained in:
parent
76eb9b1482
commit
c3451807ce
2 changed files with 3 additions and 3 deletions
|
@ -4,7 +4,7 @@
|
||||||
-- Also serve as a tutoriel for how to create a file attack and choregraphy
|
-- Also serve as a tutoriel for how to create a file attack and choregraphy
|
||||||
|
|
||||||
return {
|
return {
|
||||||
name = "Attack", -- unused for this attack, but still usefull sometimes
|
name = "attack", -- unused for this attack, but still usefull sometimes
|
||||||
cost = 00, -- the pp cost of the attack. Will be ignored if it's set
|
cost = 00, -- the pp cost of the attack. Will be ignored if it's set
|
||||||
-- as character default attack
|
-- as character default attack
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
return {
|
return {
|
||||||
name = "Spin Dash",
|
name = "spinattack",
|
||||||
cost = "05",
|
cost = 05,
|
||||||
target = nil, -- No targeting capacity
|
target = nil, -- No targeting capacity
|
||||||
effectArea = {1, 0, "line", 5, true}, -- which area is affected by the attack
|
effectArea = {1, 0, "line", 5, true}, -- which area is affected by the attack
|
||||||
choregraphy = {
|
choregraphy = {
|
||||||
|
|
Loading…
Reference in a new issue