mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-22 12:47:46 +00:00
11 lines
194 B
Lua
11 lines
194 B
Lua
![]() |
require("modifiers")
|
||
|
|
||
|
function onGain(target, effect)
|
||
|
target.SetMod(modifiersGlobal.HitCount, 3);
|
||
|
end;
|
||
|
|
||
|
function onLose(target, effect)
|
||
|
target.SetMod(modifiersGlobal.HitCount, 2);
|
||
|
end;
|
||
|
|