2020-04-13 01:58:27 +02:00
|
|
|
local name = "regional_weather:storm"
|
|
|
|
|
|
|
|
local conditions = {
|
2020-04-16 08:04:06 +02:00
|
|
|
min_height = regional_weather.settings.min_height,
|
|
|
|
max_height = regional_weather.settings.max_height,
|
|
|
|
min_windspeed = 3,
|
2020-04-18 17:26:01 +02:00
|
|
|
daylight = 15
|
2020-04-13 01:58:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
local effects = {}
|
|
|
|
|
|
|
|
effects["climate_api:sound"] = {
|
|
|
|
name = "weather_wind"
|
|
|
|
}
|
|
|
|
|
|
|
|
local function generate_effects(params)
|
|
|
|
local avg_windspeed = 5
|
|
|
|
local intensity = params.windspeed / avg_windspeed
|
|
|
|
local override = {}
|
|
|
|
|
|
|
|
override["climate_api:sound"] = {
|
|
|
|
gain = math.min(intensity, 1.2)
|
|
|
|
}
|
|
|
|
|
|
|
|
return climate_api.utility.merge_tables(effects, override)
|
|
|
|
end
|
|
|
|
|
|
|
|
climate_api.register_weather(name, conditions, generate_effects)
|