2016-01-16 01:26:33 -05:00
|
|
|
-----------------------------------
|
|
|
|
|
-- Ability: Weapon Bash
|
2022-11-04 22:19:58 -06:00
|
|
|
-- Description: Delivers an attack that can stun the target. Requires Two-handed weapon.
|
2016-01-16 01:26:33 -05:00
|
|
|
-- Obtained: Dark Knight Level 20
|
|
|
|
|
-- Cast Time: Instant
|
2022-11-04 22:19:58 -06:00
|
|
|
-- Recast Time: 00:03:00
|
2016-01-16 01:26:33 -05: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-11-04 22:19:58 -06:00
|
|
|
return xi.job_utils.dark_knight.checkWeaponBash(player, target, ability)
|
2018-08-07 19:36:44 -04:00
|
|
|
end
|
2013-03-07 03:16:05 +00:00
|
|
|
|
2026-01-30 19:16:03 -07:00
|
|
|
abilityObject.onUseAbility = function(player, target, ability, action)
|
|
|
|
|
return xi.job_utils.dark_knight.useWeaponBash(player, target, ability, action)
|
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
|