landsandboat/scripts/actions/abilities/chainspell.lua

20 lines
549 B
Lua
Raw Permalink Normal View History

2016-01-16 01:26:33 -05:00
-----------------------------------
-- Ability: Chainspell
-- Allows rapid spellcasting.
-- Obtained: Red Mage Level 1
-- Recast Time: 1:00:00
-- Duration: 0:01:00
-----------------------------------
---@type TAbility
local abilityObject = {}
2015-04-24 16:13:06 +08:00
abilityObject.onAbilityCheck = function(player, target, ability)
return xi.job_utils.red_mage.checkChainspell(player, target, ability)
end
abilityObject.onUseAbility = function(player, target, ability)
return xi.job_utils.red_mage.useChainspell(player, target, ability)
end
2021-01-17 10:31:48 -05:00
return abilityObject