1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-04-22 07:27:44 +00:00
kawari/resources/scripts/actions/FastBlade.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

6 lines
104 B
Lua

function doAction(player)
effects = EffectsBuilder()
effects:damage(20)
return effects
end