2020-10-26 17:38:53 +01:00
|
|
|
--Map Generation Stuff
|
|
|
|
|
2021-07-24 12:22:10 +02:00
|
|
|
biome_lib.register_on_generate(
|
2021-04-10 09:51:05 +02:00
|
|
|
{
|
|
|
|
surface = {
|
|
|
|
"default:dirt_with_grass",
|
|
|
|
"default:gravel",
|
|
|
|
"default:stone",
|
|
|
|
"default:permafrost_with_stones"
|
|
|
|
},
|
|
|
|
max_count = 50,
|
|
|
|
rarity = 0,
|
|
|
|
plantlife_limit = -1,
|
|
|
|
check_air = true,
|
|
|
|
random_facedir = {0, 3}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cavestuff:pebble_1",
|
|
|
|
"cavestuff:pebble_2"
|
|
|
|
}
|
|
|
|
)
|
2020-10-26 17:38:53 +01:00
|
|
|
|
2021-07-24 12:22:10 +02:00
|
|
|
biome_lib.register_on_generate(
|
2021-04-10 09:51:05 +02:00
|
|
|
{
|
|
|
|
surface = {
|
|
|
|
"default:desert_sand",
|
|
|
|
"default:desert_stone"
|
|
|
|
},
|
|
|
|
max_count = 50,
|
|
|
|
rarity = 0,
|
|
|
|
plantlife_limit = -1,
|
|
|
|
check_air = true,
|
|
|
|
random_facedir = {0, 3}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cavestuff:desert_pebble_1",
|
|
|
|
"cavestuff:desert_pebble_2"
|
|
|
|
}
|
|
|
|
)
|