pleins de trucs

This commit is contained in:
Deadzi06
2026-07-10 06:10:33 +02:00
commit a55abbc5f7
51 changed files with 2235 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
---@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