cucina_vegana/potato.lua

18 lines
407 B
Lua
Raw Normal View History

2022-02-13 18:51:44 +01:00
minetest.register_decoration({
deco_type = "simple",
2022-02-13 21:54:55 +01:00
place_on = {"default:dirt", "default:dirt_with_grass", "default:dry_dirt_with_dry_grass"},
2022-02-13 18:51:44 +01:00
sidelen = 16,
noise_params = {
offset = 0,
scale = cucina_vegana.plant_settings.potato_scale,
spread = {x = 70, y = 70, z = 70},
2022-02-13 21:54:55 +01:00
seed = 32768,
2022-02-13 18:51:44 +01:00
octaves = 3,
persist = 0.6
},
2022-02-13 21:54:55 +01:00
y_min = 0,
2022-02-13 18:51:44 +01:00
y_max = 100,
decoration = "cucina_vegana:wild_potato",
})