2020-07-24 19:12:37 +02:00
|
|
|
return {
|
2021-05-15 22:48:25 +02:00
|
|
|
headings = {"name", "condition"},
|
|
|
|
argumentLists = {
|
|
|
|
["wait"] = {"duration"},
|
|
|
|
["addGFX"] = {'sprite', "origin", "x", "y", "affectedByDirection", 'blockProcess'},
|
|
|
|
["playSFX"] = {"sfx"},
|
|
|
|
["sendDamage"] = {"power", "type", "element", "isSpecial"},
|
|
|
|
["goTo"] = {"origin", "x", "y", "duration", "blockProcess"},
|
2021-07-18 14:08:07 +02:00
|
|
|
["goTo3D"] = {"origin", "x", "y", "z", "duration", "blockProcess"},
|
2021-05-15 22:48:25 +02:00
|
|
|
["setAnimation"] = {"animation", "blockProcess"},
|
2021-07-18 14:08:07 +02:00
|
|
|
["jump"] = {"power", "useDefaultAnimation", "blockProcess"},
|
2021-05-15 22:48:25 +02:00
|
|
|
["jumpTo"] = {"origin", "x", "y", "duration", "blockProcess"},
|
2021-07-18 08:59:01 +02:00
|
|
|
["jumpBack"] = {"height", "speed", "blockProcess"},
|
2021-05-15 22:48:25 +02:00
|
|
|
["waitActorFinished"] = {"waitFor"},
|
2021-07-19 12:09:21 +02:00
|
|
|
["setAnimSpeed"] = {"speed"},
|
2021-07-17 21:55:14 +02:00
|
|
|
["waitFor"] = {"waitFor"},
|
2021-07-17 22:59:12 +02:00
|
|
|
["skipTo"] = {"skipTo"},
|
2021-05-15 22:48:25 +02:00
|
|
|
["addQTE"] = {"qteData", "origin", "blockProcess"},
|
2021-07-18 08:59:01 +02:00
|
|
|
["setCounter"] = {"counterName", "number", "relative"},
|
2021-05-15 22:48:25 +02:00
|
|
|
["useItemEffect"] = {},
|
2021-07-18 18:57:54 +02:00
|
|
|
["stopMov"] = {},
|
2021-05-15 22:48:25 +02:00
|
|
|
--[name] = {args},
|
|
|
|
},
|
|
|
|
argumentWrapper = "arguments",
|
2020-07-24 19:12:37 +02:00
|
|
|
}
|
2020-07-24 19:13:46 +02:00
|
|
|
|
|
|
|
-- The "origin" argument can have the different values
|
|
|
|
-- - "target" : the action target. if there is multiple target, it'll
|
|
|
|
-- be equal to the middle of the ennemy line
|
|
|
|
--
|
|
|
|
-- - "self" : the fighter's actor position
|
|
|
|
--
|
|
|
|
-- - "start" : the fighter's starting position
|
|
|
|
--
|
|
|
|
-- - "absolute" : the 0,0 coordinates
|