pleins de trucs
This commit is contained in:
21
scripts/data/actors/baltazarius.lua
Normal file
21
scripts/data/actors/baltazarius.lua
Normal 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
|
||||
Reference in New Issue
Block a user