19 lines
637 B
Lua
19 lines
637 B
Lua
-----------------------------------
|
|
-- Ability: Weapon Bash
|
|
-- Description: Delivers an attack that can stun the target. Requires Two-handed weapon.
|
|
-- Obtained: Dark Knight Level 20
|
|
-- Cast Time: Instant
|
|
-- Recast Time: 00:03:00
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
return xi.job_utils.dark_knight.checkWeaponBash(player, target, ability)
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability, action)
|
|
return xi.job_utils.dark_knight.useWeaponBash(player, target, ability, action)
|
|
end
|
|
|
|
return abilityObject
|