minetest_gourds/mapgen.lua

48 lines
822 B
Lua
Raw Permalink Normal View History

2018-07-20 20:47:32 -07:00
minetest.register_decoration({
deco_type = "simple",
place_on = {"default:dirt_with_grass"},
sidelen = 16,
noise_params = {
offset = 0,
scale = 0.0002,
spread = {x = 200, y = 200, z = 200},
seed = 230,
octaves = 3,
persist = 0.66
},
biomes = {"grassland", "deciduous_forest", "floatland_grassland"},
y_min = 4,
y_max = 31000,
2018-11-05 17:04:48 -08:00
decoration = "gourds:pumpkin_vine_root",
param2 = 4,
})
minetest.register_decoration({
deco_type = "simple",
place_on = {"default:dirt_with_grass"},
sidelen = 16,
noise_params = {
offset = 0,
scale = 0.0002,
spread = {x = 200, y = 200, z = 200},
seed = 230,
octaves = 3,
persist = 0.66
},
biomes = {"grassland", "deciduous_forest", "floatland_grassland"},
y_min = 4,
y_max = 31000,
decoration = "gourds:watermelon_vine_root",
2018-07-20 20:47:32 -07:00
param2 = 4,
})