mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-20 11:47:48 +00:00
27 lines
No EOL
736 B
Lua
27 lines
No EOL
736 B
Lua
require("magic");
|
|
|
|
function onMagicPrepare(caster, target, spell)
|
|
return 0;
|
|
end;
|
|
|
|
function onMagicStart(caster, target, spell)
|
|
return 0;
|
|
end;
|
|
|
|
--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;
|
|
|
|
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);
|
|
|
|
--Try to apply status effect
|
|
action.TryStatus(caster, target, skill, actionContainer, true);
|
|
end; |