mirror of
https://github.com/redstrate/Kawari.git
synced 2025-04-22 07:27:44 +00:00
This adds the necessary infrastructure to add actions that deal damage to enemies, and tests this through the new effects builder exposed through Lua.
6 lines
104 B
Lua
6 lines
104 B
Lua
function doAction(player)
|
|
effects = EffectsBuilder()
|
|
effects:damage(20)
|
|
|
|
return effects
|
|
end
|