21 lines
676 B
Lua
21 lines
676 B
Lua
-----------------------------------
|
|
-- Ability: Rampart
|
|
-- Grants all party members within the area of effect -25% SDT.
|
|
-- SDT is multiplicative with regular Damage Taken; many forms of SDT are for a single type or element of damage
|
|
-- However, Rampart's SDT is for all damage types.
|
|
-- Obtained: Paladin Level 62
|
|
-- Recast Time: 5:00
|
|
-- Duration: 0:30
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
return 0, 0
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability)
|
|
return xi.job_utils.paladin.useRampart(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|