mirror of
https://github.com/t-affeldt/regional_weather.git
synced 2024-11-10 20:40:35 +01:00
37 lines
775 B
Lua
37 lines
775 B
Lua
local name = "regional_weather:hail"
|
|
|
|
local conditions = {
|
|
min_height = regional_weather.settings.min_height,
|
|
max_height = regional_weather.settings.max_height,
|
|
max_heat = 45,
|
|
min_humidity = 65,
|
|
min_windspeed = 2.5
|
|
}
|
|
|
|
local effects = {}
|
|
|
|
effects["regional_weather:spawn_puddles"] = true
|
|
effects["regional_weather:lightning"] = true
|
|
effects["climate_api:damage"] = 1
|
|
|
|
effects["climate_api:sound"] = {
|
|
name = "weather_hail",
|
|
gain = 1
|
|
}
|
|
|
|
effects["climate_api:particles"] = {
|
|
min_pos = {x=-9, y=7, z=-9},
|
|
max_pos = {x= 9, y=7, z= 9},
|
|
falling_speed=15,
|
|
amount=5,
|
|
exptime=0.8,
|
|
size=1,
|
|
textures = {}
|
|
}
|
|
|
|
for i = 1,5,1 do
|
|
effects["climate_api:particles"].textures[i] = "weather_hail" .. i .. ".png"
|
|
end
|
|
|
|
climate_api.register_weather(name, conditions, effects)
|