Advertisement
boblovespi

Untitled

Aug 5th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. import crafttweaker.item.IIngredient;
  2.  
  3. // stone gears
  4. mods.tconstruct.Casting.addTableRecipe(<buildcraftcore:gear_stone>, <tconstruct:cast_custom:4>, <liquid:stone>, 576);
  5. recipes.addShaped("stone_gear", <buildcraftcore:gear_stone>,
  6. [[null, <ore:stone>, null],
  7. [<ore:stone>, <ore:gearWood>, <ore:stone>],
  8. [null, <ore:stone>, null]]);
  9. mods.immersiveengineering.MetalPress.addRecipe(<buildcraftcore:gear_stone>, <ore:stone>, <immersiveengineering:mold:1>, 2000, 4);
  10.  
  11.  
  12. // diamond gears
  13. mods.immersiveengineering.MetalPress.addRecipe(<buildcraftcore:gear_diamond>, <ore:diamond>, <immersiveengineering:mold:1>, 2000, 4);
  14. recipes.addShaped("diamond_gear", <buildcraftcore:gear_diamond>,
  15. [[null, <ore:diamond>, null],
  16. [<ore:diamond>, <ore:gearWood>, <ore:diamond>],
  17. [null, <ore:diamond>, null]]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement