regional_weather/ca_weathers/snow_heavy.lua

30 lines
609 B
Lua
Raw Normal View History

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,
min_humidity = 65,
daylight = 15
2020-04-13 01:58:27 +02:00
}
local effects = {}
effects["climate_api:hud_overlay"] = {
file = "weather_hud_frost.png",
z_index = -100,
color_correction = true
}
2020-04-13 01:58:27 +02:00
effects["climate_api:particles"] = {
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"
}
climate_api.register_weather(name, conditions, effects)