AntOfThy

Custom Crafting, Pulverize Stairs

Jun 7th, 2015
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. CobbleStone Stair -> 16 Gravel (should be 24 but there is some loss)
  2.  
  3. # -Z Sound, Stone Break
  4. execute @e[type=ArmorStand,name=GM4_CustomCrafter,score_GM4_crafting_min=1]
  5. ~ ~ ~ playsound dig.stone @a[r=4] ~ ~ ~ 1 1.3 1
  6.  
  7. # +Y Result
  8. execute @e[type=ArmorStand,name=GM4_CustomCrafter,score_GM4_crafting_min=1]
  9. ~ ~ ~ blockdata ~ ~ ~ {Items:[
  10. {Slot:8b,id:"minecraft:gravel",Damage:0s,Count:16b}
  11. ]}
  12.  
  13. # -Y Recipe
  14. execute @e[type=ArmorStand,name=GM4_CustomCrafter] ~ ~ ~
  15. testforblock ~ ~ ~ minecraft:dropper -1 {Items:[
  16. {Slot:4b,id:"minecraft:stone_stairs",Count:1b}
  17. ]}
  18.  
  19. Stone Brick Stair -> 16 Gravel (should be 24 but there is some loss)
  20.  
  21. # -Z Sound, Stone Break
  22. execute @e[type=ArmorStand,name=GM4_CustomCrafter,score_GM4_crafting_min=1]
  23. ~ ~ ~ playsound dig.stone @a[r=4] ~ ~ ~ 1 1.3 1
  24.  
  25. # +Y Result
  26. execute @e[type=ArmorStand,name=GM4_CustomCrafter,score_GM4_crafting_min=1]
  27. ~ ~ ~ blockdata ~ ~ ~ {Items:[
  28. {Slot:8b,id:"minecraft:gravel",Damage:0s,Count:16b}
  29. ]}
  30.  
  31. # -Y Recipe
  32. execute @e[type=ArmorStand,name=GM4_CustomCrafter] ~ ~ ~
  33. testforblock ~ ~ ~ minecraft:dropper -1 {Items:[
  34. {Slot:4b,id:"minecraft:stone_brick_stairs",Count:1b}
  35. ]}
  36.  
  37. Sandstone Stair -> 16 Sand (should be 24 but there is some loss)
  38.  
  39. # -Z Sound, Stone Break
  40. execute @e[type=ArmorStand,name=GM4_CustomCrafter,score_GM4_crafting_min=1]
  41. ~ ~ ~ playsound dig.stone @a[r=4] ~ ~ ~ 1 1.3 1
  42.  
  43. # +Y Result
  44. execute @e[type=ArmorStand,name=GM4_CustomCrafter,score_GM4_crafting_min=1]
  45. ~ ~ ~ blockdata ~ ~ ~ {Items:[
  46. {Slot:8b,id:"minecraft:sand",Damage:0s,Count:16b}
  47. ]}
  48.  
  49. # -Y Recipe
  50. execute @e[type=ArmorStand,name=GM4_CustomCrafter] ~ ~ ~
  51. testforblock ~ ~ ~ minecraft:dropper -1 {Items:[
  52. {Slot:4b,id:"minecraft:sandstone_stairs",Damage:1s,Count:1b}
  53. ]}
  54.  
  55. Quartz Stair -> 16 Quartz Shard (should be 24 but there is some loss)
  56.  
  57. # -Z Sound, Stone Break
  58. execute @e[type=ArmorStand,name=GM4_CustomCrafter,score_GM4_crafting_min=1]
  59. ~ ~ ~ playsound dig.stone @a[r=4] ~ ~ ~ 1 1.3 1
  60.  
  61. # +Y Result
  62. execute @e[type=ArmorStand,name=GM4_CustomCrafter,score_GM4_crafting_min=1]
  63. ~ ~ ~ blockdata ~ ~ ~ {Items:[
  64. {Slot:8b,id:"minecraft:quartz",Damage:0s,Count:16b}
  65. ]}
  66.  
  67. # -Y Recipe
  68. execute @e[type=ArmorStand,name=GM4_CustomCrafter] ~ ~ ~
  69. testforblock ~ ~ ~ minecraft:dropper -1 {Items:[
  70. {Slot:4b,id:"minecraft:quartz_stairs",Count:1b}
  71. ]}
Advertisement
Add Comment
Please, Sign In to add comment