1
0
mirror of https://github.com/mt-mods/plantlife_modpack.git synced 2024-09-27 14:30:17 +02:00
plantlife_modpack/dryplants/moregrass.lua

42 lines
935 B
Lua
Raw Normal View History

-----------------------------------------------------------------------------------------------
-- Grasses - More Tall Grass 0.0.2
-----------------------------------------------------------------------------------------------
-- by Mossmanikin
-- Contains code from: biome_lib
-- Looked at code from: default
-----------------------------------------------------------------------------------------------
2023-04-12 21:03:22 +02:00
minetest.register_decoration({
decoration = {
"default:grass_1",
"default:grass_2",
"default:grass_3",
"default:grass_4",
"default:grass_5"
2023-04-12 21:03:22 +02:00
},
place_on = {
"default:dirt_with_grass",
"stoneage:grass_with_silex",
"sumpf:peat",
"sumpf:sumpf"
},
noise_params = {
persist = 0.6,
flags = "absvalue",
lacunarity = 2,
offset = 0,
scale = 0.74,
spread = {
z = 100,
x = 100,
y = 100
},
seed = 0,
octaves = 3
},
flags = "all_floors",
deco_type = "simple",
y_min = 1,
y_max = 48
})