2020-04-13 01:58:27 +02:00
|
|
|
local name = "regional_weather:snow_heavy"
|
|
|
|
|
|
|
|
local conditions = {
|
|
|
|
min_height = regional_weather.settings.min_height,
|
|
|
|
max_height = regional_weather.settings.max_height,
|
2020-04-13 13:40:36 +02:00
|
|
|
max_heat = 30,
|
2020-04-16 08:04:06 +02:00
|
|
|
min_humidity = 65,
|
2020-04-18 17:26:01 +02:00
|
|
|
daylight = 15
|
2020-04-13 01:58:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
local effects = {}
|
|
|
|
|
2020-04-16 08:04:06 +02:00
|
|
|
effects["climate_api:hud_overlay"] = {
|
2020-04-24 01:36:58 +02:00
|
|
|
file = "weather_hud_frost.png",
|
2020-04-24 19:52:03 +02:00
|
|
|
z_index = -100,
|
|
|
|
color_correction = true
|
2020-04-16 08:04:06 +02:00
|
|
|
}
|
2020-04-13 01:58:27 +02:00
|
|
|
|
|
|
|
effects["climate_api:particles"] = {
|
2020-04-26 18:10:46 +02:00
|
|
|
min_pos = {x=-7, y=3, z=-7},
|
|
|
|
max_pos = {x= 7, y=6, z= 7},
|
|
|
|
exptime=7.5,
|
|
|
|
size=15,
|
|
|
|
amount=6,
|
|
|
|
falling_speed = 0.75,
|
2020-04-13 01:58:27 +02:00
|
|
|
texture="weather_snow.png"
|
|
|
|
}
|
|
|
|
|
2020-04-26 18:10:46 +02:00
|
|
|
climate_api.register_weather(name, conditions, effects)
|