[LUA]Move PUP JA to jobUtils file [LUA]Move PUP JA to jobUtils file [LUA]Move PUP JA to jobUtils file
19 lines
601 B
Lua
19 lines
601 B
Lua
-----------------------------------
|
|
-- Ability: Activate
|
|
-- Calls forth your automaton.
|
|
-- Obtained: Puppetmaster Level 1
|
|
-- Recast Time: 0:20:00 (0:16:40 with full merits)
|
|
-- Duration: Instant
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
return xi.job_utils.puppetmaster.onAbilityCheckActivate(player, target, ability)
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability)
|
|
return xi.job_utils.puppetmaster.onAbilityUseActivate(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|