21 lines
463 B
Lua
21 lines
463 B
Lua
---@class Seam : Actor
|
|
local balta, super = Class(Actor, "baltazarius")
|
|
|
|
function balta:init()
|
|
super.init(self)
|
|
|
|
-- The name of the actor
|
|
self.name = "seam"
|
|
|
|
-- The sprites dimensions
|
|
-- The shop uses this to know where to place the shopkeeper
|
|
self.width = 40
|
|
self.height = 50
|
|
|
|
-- The path to the shopkeeper sprites
|
|
self.path = "shopkeepers/balta"
|
|
-- The default animation to use
|
|
self.default = "talk"
|
|
end
|
|
|
|
return balta |