1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-20 11:47:48 +00:00
project-meteor-server/Data/scripts/effects/spinning_heel.lua

11 lines
224 B
Lua
Raw Normal View History

require("modifiers")
function onGain(owner, effect, actionContainer)
owner.SetMod(modifiersGlobal.HitCount, 3);
end;
function onLose(owner, effect, actionContainer)
owner.SetMod(modifiersGlobal.HitCount, 2);
end;