landsandboat/scripts/actions/abilities/manawell.lua
sruon 2000fdf5e2 Abilities return granted status effect
Co-Authored-By: atom0s <atom0s@users.noreply.github.com>
2025-10-26 04:20:28 -06:00

19 lines
557 B
Lua

-----------------------------------
-- Ability: Manawell
-- Description: Eliminates the cost of the next magic spell the target casts.
-- Obtained: BLM Level 95
-- Recast Time: 00:10:00 or the next spell cast
-- Duration: 0:01:00
-----------------------------------
---@type TAbility
local abilityObject = {}
abilityObject.onAbilityCheck = function(player, target, ability)
return 0, 0
end
abilityObject.onUseAbility = function(player, target, ability)
return xi.job_utils.black_mage.useManawell(player, target, ability)
end
return abilityObject