landsandboat/scripts/actions/abilities/deploy.lua
hooksta4 d068cbf7ff [LUA]Move PUP JA to jobUtils file
[LUA]Move PUP JA to jobUtils file

[LUA]Move PUP JA to jobUtils file

[LUA]Move PUP JA to jobUtils file
2024-11-16 12:52:45 -06:00

19 lines
576 B
Lua

-----------------------------------
-- Ability: Deploy
-- Orders your automaton to attack.
-- Obtained: Puppetmaster Level 1
-- Recast Time: 10 seconds
-- Duration: Instant
-----------------------------------
---@type TAbility
local abilityObject = {}
abilityObject.onAbilityCheck = function(player, target, ability)
return xi.job_utils.puppetmaster.onAbilityCheckDeploy(player, target, ability)
end
abilityObject.onUseAbility = function(player, target, ability)
return xi.job_utils.puppetmaster.onAbilityUseDeploy(player, target, ability)
end
return abilityObject