orange_tree.lua 548 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 = 3, y = 6, z = 3},
  8. yslice_prob = {
  9. {ypos = 0, prob = 127},
  10. {ypos = 3, prob = 127},
  11. },
  12. data = {
  13. _,_,_,
  14. _,_,_,
  15. _,_,_,
  16. l,l,o,
  17. L,L,L,
  18. l,o,l,
  19. _,T,_,
  20. _,T,_,
  21. _,T,_,
  22. l,T,l,
  23. L,T,L,
  24. l,L,l,
  25. _,_,_,
  26. _,_,_,
  27. _,_,_,
  28. o,l,l,
  29. L,L,L,
  30. l,l,l,
  31. }
  32. }