mirror of
https://github.com/t-affeldt/climate_api.git
synced 2025-03-20 00:21:25 +00:00
12 lines
184 B
Lua
12 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)
|