mirror of
https://github.com/redstrate/Kawari.git
synced 2025-07-17 18:47:46 +00:00
This includes making Sprint degrade into Jog, and now status effects start to be scripted.
9 lines
141 B
Lua
9 lines
141 B
Lua
EFFECT_SPRINT = 50
|
|
|
|
function doAction(player)
|
|
effects = EffectsBuilder()
|
|
|
|
effects:gain_effect(EFFECT_SPRINT)
|
|
|
|
return effects
|
|
end
|