sonic-radiance/sonic-radiance.love/game/events/event/getRings.lua

17 lines
400 B
Lua
Raw Normal View History

2021-03-22 21:15:20 +01:00
local StepParent = require "game.events.event.parent"
local SimpleMessageStep = StepParent:extend()
function SimpleMessageStep:new(controller, args)
SimpleMessageStep.super.new(self, controller, args)
end
function SimpleMessageStep:start()
game.loot.rings = game.loot.rings + self.arguments.number
end
function SimpleMessageStep:update(dt)
self:finish()
end
return SimpleMessageStep;