climate_api/weathers/clear.lua

13 lines
184 B
Lua
Raw Normal View History

2020-04-09 09:03:02 +02:00
local name = weather_mod.modname .. ":clear"
local weather = {
priority = 0
}
weather.clouds = {
density = 0.3,
color = "#fff0f0c5"
}
weather_mod.register_weather(name, weather)