landsandboat/scripts/actions/abilities/diffusion.lua

20 lines
659 B
Lua
Raw Permalink Normal View History

2016-01-16 01:26:33 -05:00
-----------------------------------
-- Ability: Diffusion
-- Grants the effect of your next support Blue Magic spell to party members within range.
-- Obtained: Blue Mage Level 75
-- Recast Time: 10:00
-- Duration: 1:00, or until the next blue magic spell is cast.
-----------------------------------
---@type TAbility
local abilityObject = {}
2016-01-16 01:26:33 -05:00
abilityObject.onAbilityCheck = function(player, target, ability)
xi.job_utils.blue_mage.checkDiffusion(player, target, ability)
end
2016-01-16 01:26:33 -05:00
abilityObject.onUseAbility = function(player, target, ability, action)
return xi.job_utils.blue_mage.useDiffusion(player, target, ability, action)
end
2021-01-17 10:31:48 -05:00
return abilityObject