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