44 lines
1.6 KiB
Lua
44 lines
1.6 KiB
Lua
-----------------------------------
|
|
-- Weapon Break
|
|
-- Great Axe weapon skill
|
|
-- Skill level: 175
|
|
-- Lowers enemy's attack. Duration of effect varies with TP.
|
|
-- Lowers attack by as much as 25% if unresisted.
|
|
-- Strong against: Manticores, Orcs, Rabbits, Raptors, Sheep.
|
|
-- Immune: Crabs, Crawlers, Funguars, Quadavs, Pugils, Sahagin, Scorpion.
|
|
-- Will stack with Sneak Attack.
|
|
-- Aligned with the Thunder Gorget.
|
|
-- Aligned with the Thunder Belt.
|
|
-- Element: Water
|
|
-- Modifiers: STR:60% VIT:60%
|
|
-- 100%TP 200%TP 300%TP
|
|
-- 1.00 1.00 1.00
|
|
-----------------------------------
|
|
---@type TWeaponSkill
|
|
local weaponskillObject = {}
|
|
|
|
weaponskillObject.onUseWeaponSkill = function(player, target, wsID, tp, primary, action, taChar)
|
|
local params = {}
|
|
params.numHits = 1
|
|
params.ftpMod = { 1, 1, 1 }
|
|
params.str_wsc = 0.32
|
|
params.vit_wsc = 0.32
|
|
|
|
if xi.settings.main.USE_ADOULIN_WEAPON_SKILL_CHANGES then
|
|
params.str_wsc = 0.6
|
|
params.vit_wsc = 0.6
|
|
end
|
|
|
|
local damage, criticalHit, tpHits, extraHits = xi.weaponskills.doPhysicalWeaponskill(player, target, wsID, params, tp, action, primary, taChar)
|
|
|
|
-- Handle status effect
|
|
local effectId = xi.effect.ATTACK_DOWN
|
|
local actionElement = xi.element.WATER
|
|
local power = 25
|
|
local duration = math.floor(120 + 6 * tp / 100 * applyResistanceAddEffect(player, target, actionElement, 0))
|
|
xi.weaponskills.handleWeaponskillEffect(player, target, effectId, actionElement, damage, power, duration)
|
|
|
|
return tpHits, extraHits, criticalHit, damage
|
|
end
|
|
|
|
return weaponskillObject
|