2020-04-13 01:58:27 +02:00
|
|
|
local name = "regional_weather:snow"
|
|
|
|
|
|
|
|
local conditions = {
|
|
|
|
min_height = regional_weather.settings.min_height,
|
|
|
|
max_height = regional_weather.settings.max_height,
|
2020-04-25 15:50:45 +02:00
|
|
|
max_heat = 35,
|
2020-04-13 13:40:36 +02:00
|
|
|
min_humidity = 50,
|
2020-04-16 08:04:06 +02:00
|
|
|
max_humidity = 65,
|
2020-04-18 17:26:01 +02:00
|
|
|
daylight = 15
|
2020-04-13 01:58:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
local effects = {}
|
|
|
|
|
2020-04-28 01:23:46 +02:00
|
|
|
local textures = {}
|
|
|
|
for i = 1,12,1 do
|
|
|
|
textures[i] = "weather_snowflake" .. i .. ".png"
|
|
|
|
end
|
|
|
|
|
2020-04-13 01:58:27 +02:00
|
|
|
effects["climate_api:particles"] = {
|
2020-04-28 01:23:46 +02:00
|
|
|
boxsize = { x = 24, y = 6, z = 24 },
|
|
|
|
v_offset = 2,
|
2020-04-25 15:50:45 +02:00
|
|
|
amount = 4,
|
2020-04-28 01:23:46 +02:00
|
|
|
expirationtime = 7,
|
|
|
|
velocity = 0.85,
|
|
|
|
acceleration = -0.06,
|
|
|
|
texture = textures,
|
|
|
|
glow = 6
|
2020-04-13 01:58:27 +02:00
|
|
|
}
|
|
|
|
|
2020-04-25 15:50:45 +02:00
|
|
|
climate_api.register_weather(name, conditions, effects)
|