orange_tree.lua 740 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. local _ = {name = "air", param1 = 0}
  2. local L = {name = "ethereal:orange_leaves", param1 = 255}
  3. local l = {name = "ethereal:orange_leaves", param1 = 200}
  4. local T = {name = "default:tree", param1 = 255}
  5. local o = {name = "ethereal:orange", param1 = 200}
  6. ethereal.orangetree = {
  7. size = {x = 5, y = 6, z = 5},
  8. yslice_prob = {
  9. {ypos = 0, prob = 127},
  10. },
  11. data = {
  12. _,_,_,_,_,
  13. _,_,_,_,_,
  14. _,_,_,_,_,
  15. _,_,L,_,_,
  16. _,_,L,_,_,
  17. _,_,_,_,_,
  18. _,_,_,_,_,
  19. _,_,_,_,_,
  20. _,_,_,_,_,
  21. _,o,L,o,_,
  22. _,L,L,L,_,
  23. _,_,L,_,_,
  24. _,_,T,_,_,
  25. _,_,T,_,_,
  26. _,_,T,_,_,
  27. L,L,T,L,L,
  28. L,T,L,T,L,
  29. _,L,L,L,_,
  30. _,_,_,_,_,
  31. _,_,_,_,_,
  32. _,_,_,_,_,
  33. _,o,L,o,_,
  34. _,L,L,L,_,
  35. _,_,L,_,_,
  36. _,_,_,_,_,
  37. _,_,_,_,_,
  38. _,_,_,_,_,
  39. _,_,L,_,_,
  40. _,_,L,_,_,
  41. _,_,_,_,_,
  42. }
  43. }