| -- src/ReplicatedStorage/Shared/EconomyConfig.lua | |
| local EconomyConfig = { | |
| -- Base values per unit (Stud^3 roughly) of raw wood | |
| WoodBaseValues = { | |
| Oak = 15, | |
| Pine = 10, | |
| Birch = 18, | |
| Walnut = 25, | |
| Mahogany = 35, | |
| Elm = 12, | |
| Redwood = 45, | |
| GlowWood = 60, | |
| LavaWood = 80, | |
| Fireproof = 100, | |
| Glowing = 120, | |
| Frozen = 70, | |
| Crystalline = 200, | |
| }, | |
| -- Processing multipliers | |
| ProcessingMultipliers = { | |
| Raw = 1.0, | |
| Stripped = 1.5, | |
| Plank = 2.5, | |
| }, | |
| -- Market fluctuation settings | |
| MarketFluctuations = { | |
| Enabled = true, | |
| UpdateInterval = 300, | |
| MaxIncrease = 1.3, | |
| MaxDecrease = 0.7, | |
| }, | |
| -- Starter cash amount | |
| StarterCash = 500, | |
| } | |
| return EconomyConfig | |