decorations.lua 485 B

1234567891011121314151617
  1. local modpath = minetest.get_modpath("permafrost")
  2. minetest.register_decoration({
  3. name = "permafrost:boulder",
  4. deco_type = "schematic",
  5. place_on = {"permafrost:with_rocks", "permafrost:with_moss_and_rocks"},
  6. sidelen = 16,
  7. fill_ratio = 0.01,
  8. biomes = {"permafrost_moss", "permafrost_rocks"},
  9. y_max = 31000,
  10. y_min = -20,
  11. schematic = modpath .. "/schematics/boulder0.mts",
  12. --flags = "place_center_x, place_center_z",
  13. rotation = "random",
  14. place_offset_y = -3,
  15. })