-- src/ReplicatedStorage/Shared/ShopConfig.lua local ShopConfig = { Items = { BasicAxe = { Price = 0, -- Free starter tool Name = "Basic Axe", Type = "Tool", Description = "A simple axe for chopping trees.", }, SteelAxe = { Price = 1200, Name = "Steel Axe", Type = "Tool", Description = "Stronger than basic. Faster swings.", }, GoldAxe = { Price = 5000, Name = "Gold Axe", Type = "Tool", Description = "High damage with quick recovery.", }, DiamondAxe = { Price = 25000, Name = "Diamond Axe", Type = "Tool", Description = "The ultimate axe. Cuts anything fast.", }, BarkStripper = { Price = 800, Name = "Bark Stripper Machine", Type = "Machine", Description = "Strips bark from raw logs.", }, Sawmill = { Price = 3500, Name = "Basic Sawmill", Type = "Machine", Description = "Converts logs into valuable planks.", }, AdvancedSawmill = { Price = 15000, Name = "Advanced Sawmill", Type = "Machine", Description = "Processes logs faster and cleaner.", }, Conveyor = { Price = 500, Name = "Conveyor Belt", Type = "Machine", Description = "Moves items automatically.", }, Flatbed = { Price = 8000, Name = "Flatbed Truck", Type = "Vehicle", Description = "Transport large loads of lumber.", }, BasicDrone = { Price = 12000, Name = "Basic Delivery Drone", Type = "Automation", Description = "Automatically carries small loads.", }, AdvancedDrone = { Price = 35000, Name = "Advanced Delivery Drone", Type = "Automation", Description = "Carries heavy loads at high speed.", }, WoodShelter = { Price = 2000, Name = "Rain Shelter Kit", Type = "Structure", Description = "Protects wood from rain degradation.", }, WireKit = { Price = 300, Name = "Wire Kit", Type = "Utility", Description = "Connect components with wires.", }, Button = { Price = 200, Name = "Logic Button", Type = "Component", Description = "Wire source: sends pulse signal.", }, Lever = { Price = 250, Name = "Logic Lever", Type = "Component", Description = "Wire source: toggles on/off.", }, }, -- Category ordering for ship GUI Categories = {"Tool", "Machine", "Vehicle", "Automation", "Structure", "Utility", "Component"}, -- Items per category (for display ordering) CategoryItems = { Tool = {"BasicAxe", "SteelAxe", "GoldAxe", "DiamondAxe"}, Machine = {"BarkStripper", "Sawmill", "AdvancedSawmill", "Conveyor"}, Vehicle = {"Flatbed"}, Automation = {"BasicDrone", "AdvancedDrone"}, Structure = {"WoodShelter"}, Utility = {"WireKit"}, Component = {"Button", "Lever"}, }, } return ShopConfig