minetest-mm/mods/plantlife_modpack/cavestuff/mapgen.lua

65 lines
1,022 B
Lua
Raw Normal View History

2020-10-26 17:38:53 +01:00
--Map Generation Stuff
2024-12-19 12:55:40 +01:00
minetest.register_decoration({
decoration = {
2021-04-10 09:51:05 +02:00
"cavestuff:pebble_1",
"cavestuff:pebble_2"
2024-12-19 12:55:40 +01:00
},
place_on = {
"default:dirt_with_grass",
"default:gravel",
"default:stone",
"default:permafrost_with_stones"
},
noise_params = {
offset = 0,
scale = 0.0078125,
spread = {
y = 100,
z = 100,
x = 100
2021-04-10 09:51:05 +02:00
},
2024-12-19 12:55:40 +01:00
seed = 0,
octaves = 3,
persist = 0.6,
flags = "absvalue",
lacunarity = 2
2021-04-10 09:51:05 +02:00
},
2024-12-19 12:55:40 +01:00
param2 = 0,
flags = "all_floors",
deco_type = "simple",
param2_max = 3,
y_min = -16,
y_max = 48
})
minetest.register_decoration({
decoration = {
2021-04-10 09:51:05 +02:00
"cavestuff:desert_pebble_1",
"cavestuff:desert_pebble_2"
2024-12-19 12:55:40 +01:00
},
place_on = {
"default:desert_sand",
"default:desert_stone"
},
noise_params = {
offset = 0,
scale = 0.0078125,
spread = {
y = 100,
z = 100,
x = 100
},
seed = 0,
octaves = 3,
persist = 0.6,
flags = "absvalue",
lacunarity = 2
},
param2 = 0,
flags = "all_floors",
deco_type = "simple",
param2_max = 3,
y_min = -16,
y_max = 48
})