Advertisement
DolphinsInMechs

Untitled

Jul 19th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. // Casting Bin: 900 mb Destablized Redstone -> Redstone Block
  2. mods.tconstruct.Casting.addBasinRecipe(<minecraft:redstone_block>, null, <liquid:redstone>, 900, false, 100);
  3.  
  4. // Casting Bin: 1000 mb Energized Glowstone -> Glowstone
  5. mods.tconstruct.Casting.addBasinRecipe(<minecraft:glowstone>, null, <liquid:glowstone>, 1000, false, 100);
  6.  
  7. // Casting Table: 1000 mb Energized Glowstone -> Glowstone
  8. mods.tconstruct.Casting.addTableRecipe(<minecraft:ender_pearl>, null, <liquid:ender>, 250, false, 100);
  9.  
  10.  
  11. // Adds Nether and End Resonating ore to oredictionary
  12. <ore:oreResonating>.add(<deepresonance:resonating_ore:1>);
  13. <ore:oreResonating>.add(<deepresonance:resonating_ore:2>);
  14.  
  15. // Arc Furnace: Resonating ore -> 16 Resonating Plates
  16. mods.immersiveengineering.ArcFurnace.addRecipe(<deepresonance:resonating_plate> * 16, <ore:oreResonating>, null, 2000, 2048);
  17.  
  18.  
  19. // Crusher: Saddle -> 2 Leather Scraps
  20. mods.immersiveengineering.Crusher.addRecipe(<terraqueous:item_main:100> * 2, <minecraft:saddle>, 2048);
  21.  
  22. // Crusher: Diamond Horse Armor -> 2 Diamond Dust
  23. mods.immersiveengineering.Crusher.addRecipe(<mekanism:otherdust> * 2, <minecraft:diamond_horse_armor>, 2048);
  24.  
  25. // Crusher: Golden Apple -> 4 Gold Dust
  26. mods.immersiveengineering.Crusher.addRecipe(<thermalfoundation:material:1> * 4, <minecraft:golden_apple>, 2048);
  27.  
  28. // Crusher: Enchanted Gold Apple -> 36 Gold Dust
  29. mods.immersiveengineering.Crusher.addRecipe(<thermalfoundation:material:1> * 36, <minecraft:golden_apple:1>, 2048);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement