Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. var f = <item:sonyikaarftl:flesh_pice>;
  2. var a = <item:minecraft:air>;
  3. var d = <item:minecraft:diamond_chestplate>;
  4. var w = <item:minecraft:white_dye>;
  5. var y = <item:minecraft:yellow_dye>;
  6. var m = <item:minecraft:oak_planks>
  7.  
  8. craftingTable.removeRecipe(<item:compressed_items:wallpaper_block>);
  9.  
  10. craftingTable.addShaped("rabbit", <item:minecraft:rabbit_hide>, [
  11. [f, f, f],
  12. [a, f, a],
  13. [f, a, f]
  14. ]);
  15.  
  16. craftingTable.addShaped("escalones", <item:minecraft:oak_stairs> * 4, [
  17. [a, a, m],
  18. [a, m, m],
  19. [m, m, m]
  20. ]);
  21.  
  22. craftingTable.addShapeless("armorb", <item:colorfularmor:diamondwhite_plate>, [w, d]);
  23.  
  24. craftingTable.addShapeless("armory", <item:colorfularmor:diamondyellow_plate>, [y, d]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement