vinetree.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. local _ = {name = "air", prob = 0}
  2. local T = {name = "default:tree", prob = 255}
  3. local L = {name = "default:leaves", prob = 255}
  4. local u = {name = "ethereal:vine", prob = 255, param2 = 2}
  5. local U = {name = "ethereal:vine", prob = 255, param2 = 3}
  6. local W = {name = "ethereal:vine", prob = 255, param2 = 4}
  7. local w = {name = "ethereal:vine", prob = 255, param2 = 5}
  8. ethereal.vinetree = {
  9. size = {x = 7, y = 7, z = 7},
  10. yslice_prob = {
  11. {ypos = 0, prob = 127},
  12. },
  13. data = {
  14. _,_,_,_,_,_,_,
  15. _,W,_,_,_,_,_,
  16. _,W,_,W,_,_,_,
  17. _,W,_,W,_,_,_,
  18. _,W,_,_,_,W,_,
  19. _,W,_,_,_,W,_,
  20. _,_,_,_,_,_,_,
  21. _,_,_,_,_,_,_,
  22. _,_,_,_,W,_,_,
  23. _,_,_,_,W,_,_,
  24. _,L,L,L,W,L,_,
  25. _,L,L,_,L,L,_,
  26. _,L,L,L,L,L,_,
  27. _,_,_,_,_,_,_,
  28. _,_,_,_,_,_,U,
  29. _,_,_,_,_,_,U,
  30. _,_,_,_,_,_,U,
  31. _,L,T,_,T,L,U,
  32. u,L,L,L,L,_,_,
  33. _,_,L,L,L,L,_,
  34. _,_,L,L,L,_,_,
  35. _,_,_,T,_,_,_,
  36. _,_,_,T,_,_,_,
  37. u,_,_,T,_,_,_,
  38. u,L,_,L,_,L,_,
  39. u,L,L,L,L,L,_,
  40. _,L,L,L,L,L,_,
  41. _,_,L,L,L,_,_,
  42. _,_,_,_,_,_,_,
  43. _,_,_,_,_,_,U,
  44. _,_,_,_,_,_,U,
  45. _,L,T,_,T,L,U,
  46. _,L,L,L,L,L,U,
  47. _,L,L,L,L,L,_,
  48. _,_,_,L,L,_,_,
  49. _,_,_,_,_,_,_,
  50. u,_,_,_,_,_,_,
  51. u,_,_,_,w,_,_,
  52. u,L,L,L,w,L,_,
  53. _,L,L,L,L,_,_,
  54. _,_,L,L,L,L,_,
  55. _,_,_,_,_,_,_,
  56. _,_,_,_,_,_,_,
  57. _,_,w,_,_,_,_,
  58. _,_,w,_,_,_,_,
  59. _,_,w,w,_,_,_,
  60. _,_,_,w,w,_,_,
  61. _,_,_,_,_,_,_,
  62. _,_,_,_,_,_,_,
  63. }
  64. }