landsandboat/scripts/actions/abilities/shield_bash.lua

20 lines
651 B
Lua
Raw Permalink Normal View History

-----------------------------------
-- Ability: Shield Bash
2015-04-24 16:13:06 +08:00
-- Delivers an attack that can stun the target. Shield required.
-- Obtained: Paladin Level 15, Valoredge automaton frame Level 1
-- Recast Time: 1:00 minute (3:00 for Valoredge version)
2015-04-24 16:13:06 +08:00
-- Duration: Instant
-----------------------------------
---@type TAbility
local abilityObject = {}
2015-04-24 16:13:06 +08:00
abilityObject.onAbilityCheck = function(player, target, ability)
return xi.job_utils.paladin.checkShieldBash(player, target, ability)
end
abilityObject.onUseAbility = function(player, target, ability)
return xi.job_utils.paladin.useShieldBash(player, target, ability)
end
2021-01-17 10:31:48 -05:00
return abilityObject