cucina_vegana/asparagus.lua

20 lines
494 B
Lua
Raw Normal View History

2018-05-02 23:21:56 +02:00
minetest.register_decoration({
deco_type = "simple",
place_on = {"default:dirt_with_grass", "default:dirt_with_rainforest_litter"},
spawn_by = {"default:tree", "default:aspen_tree", "default:jungletree"},
num_spawn_by = 2,
sidelen = 32,
noise_params = {
offset = 0,
2019-07-02 21:38:03 +02:00
scale = cucina_vegana.plant_settings.asparagus_scale,
2018-05-02 23:21:56 +02:00
spread = {x = 10, y = 10, z = 10},
2022-02-13 21:54:55 +01:00
seed = 8164,
2018-05-02 23:21:56 +02:00
octaves = 4,
persist = 0.6
},
y_min = 10,
y_max = 120,
decoration = "cucina_vegana:wild_asparagus",
})