15 lines
363 B
Lua
15 lines
363 B
Lua
|
local Base = require "gamecore.modules.world.actors.actor3D"
|
||
|
local Coin = Base:extend()
|
||
|
|
||
|
function Coin:new(world, x, y, z)
|
||
|
Coin.super.new(self, world, "coin", x, y, z + 16, 16, 16, 16, false)
|
||
|
self:setSprite("coin")
|
||
|
end
|
||
|
|
||
|
function Coin:takeCoin(other)
|
||
|
self.obj.GFX(self.world, self.x + 8, self.y + 8, self.z + 8, "sparkle")
|
||
|
self:destroy( )
|
||
|
end
|
||
|
|
||
|
return Coin
|