Advertisement
Guest User

Untitled

a guest
Jan 1st, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. #stickTypeHandle for when you need a weak handle (like a stick)
  2. <ore:stickTypeHandle>.add(<minecraft:stick>);
  3. <ore:stickTypeHandle>.add(<customitems:reed_rod>);
  4.  
  5. #fletch for when you need fletching (like a feather)
  6. <ore:fletch>.add(<minecraft:feather>);
  7. <ore:fletch>.add(<minecraft:paper>);
  8.  
  9. #poisonous for when you need something... well, poisonous
  10. <ore:poisonous>.add(<minecraft:spider_eye>);
  11. <ore:poisonous>.add(<witchery:ingredient:21>);
  12.  
  13.  
  14.  
  15.  
  16. #3 String and 1 Tendon/Animal Fat to 1 Wire
  17. recipes.addShapeless(<customitems:wire>, [<minecraft:string>, <minecraft:string>, <minecraft:string>, <AmnesiaLights:Fat>]);
  18. recipes.addShapeless(<customitems:wire>, [<minecraft:string>, <minecraft:string>, <minecraft:string>, <hungryanimals:itemtendon>]);
  19.  
  20. #1 each of a Reed Rod/Stick, Feather/Paper, Wire and Spider Eye/Belladonna Flower to 1 Poison Dart
  21. recipes.addShapeless(<weaponmod:dart:0>, [<ore:stickTypeHandle>, <ore:fletch>, <ore:poisonous>, <customitems:wire>]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement