project-meteor-server/data/scripts/effects/keen_flurry.lua
yogurt c442dc9ecd Script fixes and new effects.
Cleaned up unneeded requires in some scripts
Fixed Second Wind
Added new effect scripts
Added bard song scripts that mostly work
2018-06-25 23:36:18 -05:00

15 lines
423 B
Lua

require("battleutils")
--Untraited reduces cooldown by 50%
--Traited reduces cooldown by 100%
function onCommandStart(effect, owner, skill, actionContainer)
if skill.commandType == CommandType.Weaponskill then
local reduction = 0.5;
if effect.GetTier() == 2 then
reduction = 1.0;
end
skill.recastTimeMs = skill.recastTimeMs - (reduction * skill.recastTimeMs);
end
end;