Advertisement
Elrol

Untitled

Dec 18th, 2019
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. val sand = <tag:forge:sand>;
  2. val pstone = <item:projecte:philosophers_stone>;
  3. val netherstar = <item:minecraft:netherstar>;
  4. val redstone = <item:minecraft:redstone>;
  5. val glowstone = <item:minecraft:glowstone>;
  6. val chest = <tag:forge:chests>;
  7.  
  8. #Recipe Removal
  9. print("Removing Recipes");
  10. recipes.remove(pstone);
  11.  
  12. #Recipe Additions
  13. print("Adding recipes");
  14.  
  15. recipes.addShaped(<item:minecraft:sand> * 6, [[null,null,null],[sand, sand, sand],[sand,sand,sand]]);
  16. recipes.addShaped(pstone, [[redstone, glowstone, redstone],[glowstone, netherstar, glowstone],[redstone, glowstone, redstone]]);
  17. recipes.addShaped(pstone, [[glowstone, redstone, glowstone],[redstone, netherstar, redstone],[glowstone, redstone, glowstone]]);
  18. recipes.addShapeless(<item:minecraft:chest>, [chest]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement