Advertisement
PRIMETOXINZ

flowerpot.lua

Jul 24th, 2015
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. (function()
  2. local t = "stone"
  3. local c = "dirt"
  4. local g = "wool_colored_green"--"leaves_oak_opaque"-- "flower_rose"
  5. local r = "wool_colored_red"
  6. local x = 5
  7. local z = 0
  8. local y = 8
  9. local y1 = 0
  10. return {
  11. label="Flower Pot",
  12. shapes = {
  13. {x+0,y+0,z+0,x+6,y+6,z+1,texture=t},
  14. {x+5,y+0,z+1,x+6,y+6,z+6,texture=t},
  15. {x+0,y+0,z+1,x+1,y+6,z+6,texture=t},
  16. {x+1,y+0,z+5,x+5,y+6,z+6,texture=t},
  17. --dirt
  18. {x+1,y+0,z+1,x+5,y+4,z+5,texture=c},
  19. {x+2,y+5,z+2,x+3,y+8,z+3,texture=g},
  20. {x+2,y+7,z+3,x+3,16,z+4,texture=g},
  21. --rose
  22. {x+2,y1+0,z+3,x+3,y1+3,z+4,texture=g,state=true},
  23. {x+2,y1+2,z+2,x+3,y1+3,z+3,texture=g,state=true},
  24.  
  25. {x+2,y1+5,z+0,x+3,y1+6,z+1,texture=r,state=true},
  26. {x+2,y1+3,z+0,x+3,y1+4,z+1,texture=r,state=true},
  27. {x+2,y1+3,z+1,x+3,y1+6,z+2,texture=r,state=true},
  28. {x+2,y1+3,z+2,x+3,y1+7,z+4,texture=r,state=true},
  29. {x+2,y1+2,z+4,x+3,y1+6,z+5,texture=r,state=true},
  30. {x+2,y1+4,z+5,x+3,y1+5,z+6,texture=r,state=true},
  31.  
  32. {x+0,y1+5,z+2,x+1,y1+6,z+3,texture=r,state=true},
  33. {x+0,y1+3,z+2,x+1,y1+4,z+3,texture=r,state=true},
  34. {x+1,y1+3,z+2,x+2,y1+6,z+3,texture=r,state=true},
  35. {x+2,y1+3,z+2,x+4,y1+7,z+3,texture=r,state=true},
  36. {x+4,y1+2,z+2,x+5,y1+6,z+3,texture=r,state=true},
  37. {x+5,y1+4,z+2,x+6,y1+5,z+3,texture=r,state=true}
  38. }
  39. }
  40. end)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement