mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-22 12:47:46 +00:00
9 lines
245 B
Lua
9 lines
245 B
Lua
![]() |
require("modifiers")
|
||
|
|
||
|
function onGain(owner, effect, actionContainer)
|
||
|
owner.AddMod(modifiersGlobal.DamageTakenDown, 100);
|
||
|
end;
|
||
|
|
||
|
function onLose(owner, effect, actionContainer)
|
||
|
owner.SubtractMod(modifiersGlobal.DamageTakenDown, 100);
|
||
|
end;
|