19 lines
513 B
Lua
19 lines
513 B
Lua
-----------------------------------
|
|
-- Ability: Pianissimo
|
|
-- Limits area of effect of next song to a single target.
|
|
-- Obtained: Bard Level 20
|
|
-- Recast Time: 0:00:15
|
|
-- Duration: 00: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.bard.usePianissimo(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|