26 lines
651 B
Lua
Raw Normal View History

-- LUALOCALS < ---------------------------------------------------------
2018-11-03 18:56:07 -04:00
local minetest, nodecore
= minetest, nodecore
-- LUALOCALS > ---------------------------------------------------------
2018-11-02 00:08:42 -04:00
minetest.register_decoration({
deco_type = "schematic",
place_on = {"nc_terrain:dirt_with_grass"},
sidelen = 16,
noise_params = {
offset = -0.008,
scale = 0.012,
spread = {x = 250, y = 250, z = 250},
seed = 2,
octaves = 3,
persist = 0.66
},
biomes = {"unknown"},
y_min = 1,
y_max = 31000,
schematic = nodecore.tree_schematic,
2018-11-02 00:08:42 -04:00
flags = "place_center_x, place_center_z",
rotation = "random",
replacements = { }
})