2018-02-15 13:20:46 -06:00
|
|
|
require("global");
|
|
|
|
require("magic");
|
|
|
|
|
|
|
|
function onMagicPrepare(caster, target, spell)
|
|
|
|
return 0;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function onMagicStart(caster, target, spell)
|
|
|
|
return 0;
|
|
|
|
end;
|
|
|
|
|
|
|
|
--Increased damage and conversion to single target
|
|
|
|
function onCombo(caster, target, spell)
|
|
|
|
spell.aoeType = 0;
|
2019-05-29 23:05:40 -07:00
|
|
|
spell.basePotency = spell.basePotency * 1.5;
|
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 damage
|
|
|
|
action.amount = skill.basePotency;
|
|
|
|
|
|
|
|
--DoAction handles rates, buffs, dealing damage
|
|
|
|
action.DoAction(caster, target, skill, actionContainer);
|
|
|
|
|
2019-05-29 23:05:40 -07:00
|
|
|
--Dispels an effect on each target.
|
|
|
|
target.statusEffects.RemoveStatusEffect(GetRandomEffectByFlag(8), actionContainer, 30336);
|
2018-02-15 13:20:46 -06:00
|
|
|
end;
|