File size: 2,828 Bytes
0712d5f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | -- 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
|