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

17 lines
425 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:addItem(self.arguments.type, self.arguments.item, self.arguments.number)
end
function SimpleMessageStep:update(dt)
self:finish()
end
return SimpleMessageStep;