mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
Cleaned up unneeded requires in some scripts Fixed Second Wind Added new effect scripts Added bard song scripts that mostly work
18 lines
408 B
Lua
18 lines
408 B
Lua
require("global");
|
|
require("magic");
|
|
|
|
function onMagicPrepare(caster, target, spell)
|
|
return 0;
|
|
end;
|
|
|
|
function onMagicStart(caster, target, spell)
|
|
--27363: Enhanced Raise: No longer inflicts weakness.
|
|
if caster.HasTrait(27363) then
|
|
ability.statusId = 0;
|
|
end
|
|
return 0;
|
|
end;
|
|
|
|
--Not sure how raise works yet.
|
|
function onSkillFinish(caster, target, skill, action, actionContainer)
|
|
end; |