2014-08-12 21:08:11 +02:00
|
|
|
--Map Generation Stuff
|
|
|
|
|
2021-07-19 20:18:01 +02:00
|
|
|
biome_lib.register_on_generate(
|
2021-04-06 10:04:08 +02:00
|
|
|
{
|
2021-04-06 10:08:47 +02:00
|
|
|
surface = {
|
|
|
|
"default:dirt_with_grass",
|
|
|
|
"default:gravel",
|
|
|
|
"default:stone",
|
|
|
|
"default:permafrost_with_stones"
|
|
|
|
},
|
2021-04-06 10:04:08 +02:00
|
|
|
max_count = 50,
|
|
|
|
rarity = 0,
|
|
|
|
plantlife_limit = -1,
|
|
|
|
check_air = true,
|
|
|
|
random_facedir = {0, 3}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cavestuff:pebble_1",
|
|
|
|
"cavestuff:pebble_2"
|
|
|
|
}
|
|
|
|
)
|
2018-02-18 01:28:43 +01:00
|
|
|
|
2021-07-19 20:18:01 +02:00
|
|
|
biome_lib.register_on_generate(
|
2021-04-06 10:04:08 +02:00
|
|
|
{
|
2021-04-06 10:08:47 +02:00
|
|
|
surface = {
|
|
|
|
"default:desert_sand",
|
|
|
|
"default:desert_stone"
|
|
|
|
},
|
2021-04-06 10:04:08 +02:00
|
|
|
max_count = 50,
|
|
|
|
rarity = 0,
|
|
|
|
plantlife_limit = -1,
|
|
|
|
check_air = true,
|
|
|
|
random_facedir = {0, 3}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cavestuff:desert_pebble_1",
|
|
|
|
"cavestuff:desert_pebble_2"
|
|
|
|
}
|
|
|
|
)
|