1
0
mirror of https://github.com/mt-mods/plantlife_modpack.git synced 2024-09-23 12:30:20 +02:00
plantlife_modpack/cavestuff/mapgen.lua
2021-04-06 04:09:34 -04:00

40 lines
634 B
Lua

--Map Generation Stuff
biome_lib:register_generate_plant(
{
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"
}
)
biome_lib:register_generate_plant(
{
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"
}
)