2013-02-20 04:57:34 +00:00
|
|
|
-----------------------------------
|
|
|
|
|
-- 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
|
2020-06-04 00:32:05 -07:00
|
|
|
-- Recast Time: 1:00 minute (3:00 for Valoredge version)
|
2015-04-24 16:13:06 +08:00
|
|
|
-- Duration: Instant
|
2013-02-20 04:57:34 +00:00
|
|
|
-----------------------------------
|
2024-08-25 10:24:42 -04:00
|
|
|
---@type TAbility
|
2022-10-06 17:14:01 +03:00
|
|
|
local abilityObject = {}
|
2015-04-24 16:13:06 +08:00
|
|
|
|
2022-10-06 17:14:01 +03:00
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
2022-09-16 14:18:05 -06:00
|
|
|
return xi.job_utils.paladin.checkShieldBash(player, target, ability)
|
2018-08-07 19:36:44 -04:00
|
|
|
end
|
2013-03-07 03:16:05 +00:00
|
|
|
|
2022-10-06 17:14:01 +03:00
|
|
|
abilityObject.onUseAbility = function(player, target, ability)
|
2022-09-16 14:18:05 -06:00
|
|
|
return xi.job_utils.paladin.useShieldBash(player, target, ability)
|
2018-08-07 19:36:44 -04:00
|
|
|
end
|
2021-01-17 10:31:48 -05:00
|
|
|
|
2022-10-06 17:14:01 +03:00
|
|
|
return abilityObject
|