mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
CommandResultContainer. Alter Modifiers to be the same as ParamNames. Add LoseOnClassChange flag for status effects. Add a few missing status effects. Fix EndTime for stance status effects to stop icon from blinking.
23 lines
559 B
Lua
23 lines
559 B
Lua
require("modifiers")
|
|
require("battleutils")
|
|
|
|
|
|
function onCommandStart(effect, attacker, command, actionContainer)
|
|
--Random guess
|
|
command.enmityModifier += 0.25;
|
|
end
|
|
|
|
function onHit(effect, attacker, defender, action, actionContainer)
|
|
if skill.id == 27259 then
|
|
--Effect stacks up to 3 times
|
|
if effect.GetTier() < 3 then
|
|
effect.SetTier(effect.GetTier() + 1);
|
|
end
|
|
end
|
|
end
|
|
|
|
function onMiss(effect, attacker, defender, action, actionContainer)
|
|
if skill.id == 27259 then
|
|
effect.SetTier(0);
|
|
end
|
|
end |