2017-09-16 02:50:32 +01:00
|
|
|
require("global");
|
|
|
|
require("weaponskill");
|
|
|
|
|
|
|
|
function onSkillPrepare(caster, target, spell)
|
|
|
|
return 0;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function onSkillStart(caster, target, spell)
|
|
|
|
return 0;
|
|
|
|
end;
|
|
|
|
|
2018-02-15 13:20:46 -06:00
|
|
|
--Increased enmity
|
|
|
|
function onCombo(caster, target, skill)
|
2018-04-18 16:06:41 -05:00
|
|
|
--https://www.bluegartr.com/threads/107403-Stats-and-how-they-work/page17
|
|
|
|
skill.enmityModifier = 2.75;
|
2018-02-15 13:20:46 -06:00
|
|
|
end;
|
|
|
|
|
2018-04-18 16:06:41 -05:00
|
|
|
function onSkillFinish(caster, target, skill, action, actionContainer)
|
|
|
|
--calculate ws damage
|
|
|
|
action.amount = skill.basePotency;
|
|
|
|
|
|
|
|
--DoAction handles rates, buffs, dealing damage
|
|
|
|
action.DoAction(caster, target, skill, actionContainer);
|
2017-09-16 02:50:32 +01:00
|
|
|
end;
|