1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-04-23 15:47:45 +00:00
kawari/resources/scripts/actions/Sprint.lua
Joshua Goins e8581cdaba Add script for Fast Blade action
This adds the necessary infrastructure to add actions that deal damage to
enemies, and tests this through the new effects builder exposed through Lua.
2025-03-30 09:31:50 -04:00

9 lines
179 B
Lua

function doAction(player)
effects = EffectsBuilder()
-- TODO: go through effectsbuilder
-- give sprint
player:give_status_effect(50, 5.0)
return effects
end