mapgen.lua 822 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. minetest.register_decoration({
  2. deco_type = "simple",
  3. place_on = {"default:dirt_with_grass"},
  4. sidelen = 16,
  5. noise_params = {
  6. offset = 0,
  7. scale = 0.0002,
  8. spread = {x = 200, y = 200, z = 200},
  9. seed = 230,
  10. octaves = 3,
  11. persist = 0.66
  12. },
  13. biomes = {"grassland", "deciduous_forest", "floatland_grassland"},
  14. y_min = 4,
  15. y_max = 31000,
  16. decoration = "gourds:pumpkin_vine_root",
  17. param2 = 4,
  18. })
  19. minetest.register_decoration({
  20. deco_type = "simple",
  21. place_on = {"default:dirt_with_grass"},
  22. sidelen = 16,
  23. noise_params = {
  24. offset = 0,
  25. scale = 0.0002,
  26. spread = {x = 200, y = 200, z = 200},
  27. seed = 230,
  28. octaves = 3,
  29. persist = 0.66
  30. },
  31. biomes = {"grassland", "deciduous_forest", "floatland_grassland"},
  32. y_min = 4,
  33. y_max = 31000,
  34. decoration = "gourds:watermelon_vine_root",
  35. param2 = 4,
  36. })