Advertisement
Ambair

Untitled

Jul 17th, 2017
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. furnace.addRecipe(<refinedstorage:silicon>, <minecraft:quartz>, 0.35);
  2.  
  3. val rPlate = <ore:plateSteel>;
  4. val rPlatePress = <immersiveengineering:mold>;
  5. val rGearPress = <immersiveengineering:mold:1>;
  6. val rWirePress = <immersiveengineering:mold:4>;
  7. val rRodPress = <immersiveengineering:mold:2>;
  8. val rGear = <ore:gearIron>;
  9. val rWire = <ore:wireCopper>;
  10. val rRod = <ore:stickIron>;
  11.  
  12. recipes.addShaped(rPlatePress,
  13. [[null,rPlate,null],
  14. [rPlate,rPlate,rPlate],
  15. [null,rPlate,null]]);
  16.  
  17. recipes.addShaped(rGearPress,
  18. [[null,rPlate,null],
  19. [rPlate,rGear,rPlate],
  20. [null,rPlate,null]]);
  21.  
  22. recipes.addShaped(rWirePress,
  23. [[null,rPlate,null],
  24. [rPlate,rWire,rPlate],
  25. [null,rPlate,null]]);
  26.  
  27. recipes.addShaped(rRodPress,
  28. [[null,rPlate,null],
  29. [rPlate,rRod,rPlate],
  30. [null,rPlate,null]]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement