File size: 526 Bytes
0712d5f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-- src/ReplicatedStorage/Shared/WeatherConfig.lua

local WeatherConfig = {
    CycleDurationMin = 300, -- 5 mins of clear weather
    CycleDurationMax = 600, -- 10 mins
    
    RainDurationMin = 60, -- 1 minute of rain
    RainDurationMax = 180, -- 3 minutes of rain
    
    DegradationConfig = {
        WoodValueLossPerTick = 0.05, -- 5% loss per tick
        TickInterval = 3, -- Every 3 seconds in rain
        MaxValueLoss = 0.5, -- Logs won't lose more than 50% of value
    }
}

return WeatherConfig