mirror of
https://github.com/t-affeldt/climate_api.git
synced 2024-11-15 07:00:24 +01:00
13 lines
184 B
Lua
13 lines
184 B
Lua
local name = weather_mod.modname .. ":clear"
|
|
|
|
local weather = {
|
|
priority = 0
|
|
}
|
|
|
|
weather.clouds = {
|
|
density = 0.3,
|
|
color = "#fff0f0c5"
|
|
}
|
|
|
|
weather_mod.register_weather(name, weather)
|