bamboo_tree.lua 957 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. local _ = {name = "air", param1 = 000}
  2. local B = {name = "ethereal:bamboo", param1 = 255}
  3. local L = {name = "ethereal:bamboo_leaves", param1 = 255}
  4. local l = {name = "ethereal:bamboo_leaves", param1 = 100}
  5. ethereal.bambootree = {
  6. size = {x = 3, y = 18, z = 3},
  7. yslice_prob = {
  8. {ypos = 0, prob = 127},
  9. {ypos = 1, prob = 127},
  10. {ypos = 2, prob = 127},
  11. },
  12. data = {
  13. _,_,_,
  14. _,_,_,
  15. _,_,_,
  16. _,_,_,
  17. _,_,_,
  18. _,_,_,
  19. _,_,_,
  20. _,_,_,
  21. _,_,_,
  22. _,_,_,
  23. _,_,_,
  24. _,_,_,
  25. _,_,_,
  26. _,_,_,
  27. _,_,_,
  28. l,L,l,
  29. _,L,_,
  30. _,_,_,
  31. _,B,_,
  32. _,B,_,
  33. _,B,_,
  34. _,B,_,
  35. _,B,_,
  36. _,B,_,
  37. _,B,_,
  38. _,B,_,
  39. _,B,_,
  40. _,B,_,
  41. _,B,_,
  42. _,B,_,
  43. _,B,_,
  44. _,B,_,
  45. _,B,_,
  46. l,L,l,
  47. _,L,_,
  48. _,l,_,
  49. _,_,_,
  50. _,_,_,
  51. _,_,_,
  52. _,_,_,
  53. _,_,_,
  54. _,_,_,
  55. _,_,_,
  56. _,_,_,
  57. _,_,_,
  58. _,_,_,
  59. _,_,_,
  60. _,_,_,
  61. _,_,_,
  62. _,_,_,
  63. _,_,_,
  64. l,L,l,
  65. _,L,_,
  66. _,_,_,
  67. }
  68. }
  69. if ethereal.papyruswalk == true then
  70. minetest.override_item("default:papyrus", {
  71. walkable = true,
  72. sunlight_propagates = true
  73. })
  74. end