2020-04-13 01:58:27 +02:00
|
|
|
local name = "regional_weather:rain_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
|
|
|
min_heat = 40,
|
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 = {}
|
|
|
|
|
|
|
|
effects["climate_api:sound"] = {
|
2020-04-22 00:54:27 +02:00
|
|
|
name = "weather_rain_heavy",
|
2020-04-13 01:58:27 +02:00
|
|
|
gain = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
effects["climate_api:particles"] = {
|
|
|
|
min_pos = {x=-9, y=7, z=-9},
|
|
|
|
max_pos = {x= 9, y=7, z= 9},
|
2020-04-22 00:54:27 +02:00
|
|
|
falling_speed=7,
|
|
|
|
amount=17,
|
2020-04-13 01:58:27 +02:00
|
|
|
exptime=0.8,
|
2020-04-22 00:54:27 +02:00
|
|
|
min_size=25,
|
|
|
|
max_size=35,
|
|
|
|
textures={
|
|
|
|
"weather_rain.png",
|
|
|
|
"weather_rain.png",
|
|
|
|
"weather_rain_medium.png"
|
|
|
|
}
|
2020-04-13 01:58:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
climate_api.register_weather(name, conditions, effects)
|