2018-04-18 16:06:41 -05:00
|
|
|
require("global");
|
|
|
|
require("ability");
|
|
|
|
|
|
|
|
function onAbilityPrepare(caster, target, ability)
|
|
|
|
return 0;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function onAbilityStart(caster, target, ability)
|
2019-05-29 23:05:40 -07:00
|
|
|
ability.statusMagnitude = 100;
|
2018-04-18 16:06:41 -05:00
|
|
|
--27243: Enhanced Raging Strike: Increases effect of Raging Strike by 50%
|
|
|
|
if caster.HasTrait(27241) then
|
2019-05-29 23:05:40 -07:00
|
|
|
ability.statusMagnitude = ability.statusMagnitude * 1.5;
|
2018-04-18 16:06:41 -05:00
|
|
|
end
|
|
|
|
return 0;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function onSkillFinish(caster, target, skill, action, actionContainer)
|
2019-05-29 23:05:40 -07:00
|
|
|
--If caster has raging strike, remove it and send message, otherwise apply it.
|
|
|
|
local buff = caster.statusEffects.GetStatusEffectById(223221)
|
|
|
|
|
|
|
|
if buff ~= nil then
|
|
|
|
--30329: Your Raging Strike removes your Raging Strike effect.
|
2019-06-01 21:21:21 -07:00
|
|
|
caster.statusEffects.RemoveStatusEffect(buff, actionContainer, 30329);
|
2019-05-29 23:05:40 -07:00
|
|
|
else
|
|
|
|
--DoAction handles rates, buffs, dealing damage
|
|
|
|
action.DoAction(caster, target, skill, actionContainer);
|
|
|
|
end
|
2018-04-18 16:06:41 -05:00
|
|
|
end;
|