mirror of
https://github.com/t-affeldt/regional_weather.git
synced 2024-11-11 04:50:34 +01:00
31 lines
613 B
Lua
31 lines
613 B
Lua
local name = "regional_weather:snow"
|
|
|
|
local conditions = {
|
|
min_height = regional_weather.settings.min_height,
|
|
max_height = regional_weather.settings.max_height,
|
|
max_heat = 35,
|
|
min_humidity = 50,
|
|
max_humidity = 65,
|
|
daylight = 15
|
|
}
|
|
|
|
local effects = {}
|
|
|
|
local textures = {}
|
|
for i = 1,12,1 do
|
|
textures[i] = "weather_snowflake" .. i .. ".png"
|
|
end
|
|
|
|
effects["climate_api:particles"] = {
|
|
boxsize = { x = 24, y = 6, z = 24 },
|
|
v_offset = 2,
|
|
amount = 4,
|
|
expirationtime = 7,
|
|
velocity = 0.85,
|
|
acceleration = -0.06,
|
|
texture = textures,
|
|
glow = 6
|
|
}
|
|
|
|
climate_api.register_weather(name, conditions, effects)
|