19 lines
605 B
Lua
19 lines
605 B
Lua
-----------------------------------
|
|
-- Ability: Blade Bash
|
|
-- Deliver an attack that can stun the target and occasionally cause Plague.
|
|
-- Obtained: Samurai Level 75
|
|
-- Recast Time: 3:00
|
|
-- Duration: Instant
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
return xi.job_utils.samurai.checkBladeBash(player, target, ability)
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability, action)
|
|
return xi.job_utils.samurai.useBladeBash(player, target, ability, action)
|
|
end
|
|
|
|
return abilityObject
|