2017-12-08 00:58:39 -06:00
|
|
|
require("magic");
|
|
|
|
|
|
|
|
function onMagicPrepare(caster, target, spell)
|
|
|
|
return 0;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function onMagicStart(caster, target, spell)
|
|
|
|
return 0;
|
|
|
|
end;
|
|
|
|
|
2018-02-15 13:20:46 -06:00
|
|
|
--Increased Damage and reduced recast time in place of stun
|
|
|
|
function onCombo(caster, target, spell)
|
|
|
|
spell.statusChance = 0;
|
|
|
|
spell.basePotency = spell.basePotency * 1.5;
|
|
|
|
spell.recastTimeMs = spell.recastTimeMs / 2;
|
|
|
|
end;
|
2017-12-08 00:58:39 -06:00
|
|
|
|
2018-02-15 13:20:46 -06:00
|
|
|
function onMagicFinish(caster, target, spell, action)
|
|
|
|
magic.onMagicFinish(caster, target, spell, action)
|
2017-12-08 00:58:39 -06:00
|
|
|
end;
|