algorembrant's picture
Upload 88 files
0712d5f verified
-- 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