Cow_Life_Sim_RPG/Objects/Museum/GiftShop/GiftShopShop.gd

23 lines
914 B
GDScript

extends "res://Interactions/Shopping/ShopHaver.gd"
func instantiate_shop_inventory():
var DIYExcavation = load("res://Items/Toys/Other/DIYExcavation.gd").new()
var mapleTea = load("res://Items/Foods/Packaged/MapleTeaBag.gd").new()
var crocPuppet = load("res://Items/Toys/Puppets/CrocPuppet.gd").new()
var gummyDino = load("res://Items/Foods/Snack/VeganGummyDino.gd").new()
var activityBook = load("res://Items/Paper/UnicornJournal.gd").new()
var mushroomKit = load("res://Items/Fungi/GrowYourOwnMushroomKit.gd").new()
var wormOnAString = load("res://Items/Toys/WormOnAString/WormOnAString.gd").new()
shopInventory = []
shopInventory.append(DIYExcavation)
shopInventory.append(mapleTea)
shopInventory.append(crocPuppet)
shopInventory.append(gummyDino)
shopInventory.append(activityBook)
shopInventory.append(mushroomKit)
shopInventory.append(wormOnAString)
super.instantiate_shop_inventory()