mirror of
https://github.com/redstrate/Kawari.git
synced 2025-07-18 02:57:45 +00:00
10 lines
134 B
Lua
10 lines
134 B
Lua
|
EFFECT_JOG = 4029
|
||
|
|
||
|
function onGain(player)
|
||
|
-- it does nothing
|
||
|
end
|
||
|
|
||
|
function onLose(player)
|
||
|
player:gain_effect(EFFECT_JOG)
|
||
|
end
|