20 lines
645 B
Lua
20 lines
645 B
Lua
-----------------------------------
|
|
-- Ability: Devotion
|
|
-- Sacrifices HP to grant a party member the same amount in MP.
|
|
-- Obtained: White Mage Level 75
|
|
-- Recast Time: 0:10:00
|
|
-- Duration: Instant
|
|
-- Target: Party member, cannot target self.
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
return xi.job_utils.white_mage.checkDevotion(player, target, ability)
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability, action)
|
|
return xi.job_utils.white_mage.useDevotion(player, target, ability, action)
|
|
end
|
|
|
|
return abilityObject
|