birch_tree.lua 780 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. local _ = {name = "air", param1 = 0}
  2. local T = {name = "ethereal:birch_trunk", param1 = 255}
  3. local L = {name = "ethereal:birch_leaves", param1 = 255}
  4. local l = {name = "ethereal:birch_leaves", param1 = 150}
  5. ethereal.birchtree = {
  6. size = {x = 5, y = 7, z = 5},
  7. yslice_prob = {
  8. {ypos = 0, prob = 127},
  9. {ypos = 3, prob = 127},
  10. },
  11. data = {
  12. _,_,_,_,_,
  13. _,_,_,_,_,
  14. _,_,_,_,_,
  15. l,L,L,L,l,
  16. l,L,L,L,l,
  17. _,_,_,_,_,
  18. _,_,_,_,_,
  19. _,_,_,_,_,
  20. _,_,_,_,_,
  21. _,_,_,_,_,
  22. L,L,L,L,L,
  23. L,L,L,L,L,
  24. _,l,L,l,_,
  25. _,_,L,_,_,
  26. _,_,T,_,_,
  27. _,_,T,_,_,
  28. _,_,T,_,_,
  29. L,L,T,L,L,
  30. L,L,T,L,L,
  31. _,L,T,L,_,
  32. _,L,L,L,_,
  33. _,_,_,_,_,
  34. _,_,_,_,_,
  35. _,_,_,_,_,
  36. L,L,L,L,L,
  37. L,L,L,L,L,
  38. _,l,L,l,_,
  39. _,_,L,_,_,
  40. _,_,_,_,_,
  41. _,_,_,_,_,
  42. _,_,_,_,_,
  43. l,L,L,L,l,
  44. l,L,L,L,l,
  45. _,_,_,_,_,
  46. _,_,_,_,_,
  47. }
  48. }