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,16 @@
---@class TestShop : Shop
local TestShop, super = Class(Shop, "balta_shop")
function TestShop:init()
super.init(self)
self.background = "shops/baltazarius_bg"
self.shop_music = "legend_deltastream"
-- This makes the shopkeeper slide when you enter the BUY menu
self.shopkeeper.slide = true
-- This places the actor we've just created
self.shopkeeper:setActor("baltazarius")
end
return TestShop