Advertisement
NovaViper

My Vanilla item recipes

Dec 25th, 2017
381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. //Elytra
  2. val string = <minecraft:string>;
  3. val paper = <minecraft:paper>;
  4. val feather = <minecraft:feather>;
  5. val diamond = <minecraft:diamond>;
  6. val leather = <minecraft:leather>;
  7. val elytra = <minecraft:elytra>;
  8. recipes.addShaped("EasyElytra", elytra, [[string, diamond, string],[paper, leather, paper],[feather, null, feather]]);
  9.  
  10. //Poison Arrow
  11. val arrow = <minecraft:arrow>;
  12. val pufferfish = <minecraft:fish:3>;
  13. val poison_arrow = <minecraft:tipped_arrow>.withTag({Potion: "minecraft:strong_poison"});
  14. recipes.addShaped("EasyPoisonArrow", poison_arrow * 8, [[arrow, arrow, arrow],[arrow, pufferfish, arrow],[arrow, arrow, arrow]]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement