Advertisement
TumeniNodes

goldleaf mapgen

Jul 3rd, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. minetest.register_decoration({
  2.     deco_type = "schematic",
  3.     place_on = {"base:dirt_with_shadow_grass"},
  4.     sidelen = 16,
  5.     noise_params = {
  6.         offset = -0.03,
  7.         scale = 0.055,
  8.         spread = {x = 128, y = 128, z = 128},
  9.         seed = 33,
  10.         octaves = 3,
  11.         persist = 0.66
  12.     },
  13.     biomes = {"shadow_land"},
  14.     y_max = 31000,
  15.     y_min = 4,
  16.     schematic = minetest.get_modpath("plants") ..
  17.         "/schematics/goldleaf_tree_2.mts",
  18.     flags = "place_center_x, place_center_z",
  19.     rotation = "random",
  20. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement