landsandboat/scripts/actions/abilities/weapon_bash.lua

20 lines
637 B
Lua
Raw Permalink Normal View History

2016-01-16 01:26:33 -05:00
-----------------------------------
-- Ability: Weapon Bash
-- 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
-- Recast Time: 00:03:00
2016-01-16 01:26:33 -05:00
-----------------------------------
---@type TAbility
local abilityObject = {}
2015-04-24 16:13:06 +08:00
abilityObject.onAbilityCheck = function(player, target, ability)
return xi.job_utils.dark_knight.checkWeaponBash(player, target, ability)
end
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)
end
2021-01-17 10:31:48 -05:00
return abilityObject