Advertisement
boblovespi

Untitled

Dec 1st, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. import crafttweaker.item.IIngredient;
  2. import crafttweaker.oredict.IOreDictEntry;
  3. import crafttweaker.liquid.ILiquidStack;
  4.  
  5. val slag = <ore:crystalSlagRich>;
  6. val boronOre = <ore:oreBoron>;
  7.  
  8. // 162: boron + slag = 4x boron
  9. mods.immersiveengineering.AlloySmelter.addRecipe(<nuclearcraft:ingot:5>*4, boronOre, slag, 100);
  10. mods.immersiveengineering.AlloySmelter.addRecipe(<nuclearcraft:ingot:5>*4, slag, boronOre, 100);
  11.  
  12. // 164: boron dust = salt & ash
  13. mods.immersiveengineering.BlastFurnace.addRecipe(<mekanism:salt>*8, <ore:dustBoron>, 1200, <forestry:ash>);
  14.  
  15. // 163: crushing boron ore
  16. mods.immersiveengineering.Crusher.removeRecipe(<nuclearcraft:dust:5>*2);
  17. mods.immersiveengineering.Crusher.addRecipe(<nuclearcraft:dust:5>*2, boronOre, 2048, <immersiveengineering:material:24>, 0.15);
  18.  
  19. // 165: crushing salt
  20. mods.immersiveengineering.Crusher.addRecipe(<immersiveengineering:material:24>, <ore:dustSalt>, 2048, <nuclearcraft:dust:5>, 0.05);
  21.  
  22. // 166: 16x boron dust = rhodocrosite
  23. // using the alloy furnace??
  24.  
  25. // 167: salt + water = brine
  26. mods.factorytech.Agitator.addRecipe(<liquid:water> * 1000, null, <mekanism:salt>, <liquid:brine> * 1000, null);
  27.  
  28. // 168: rich phyto-grow
  29. recipes.addShapeless("saltpeter_charcoal_to_rich_phyto_grow", <thermalfoundation:fertilizer:1> * 1, [<ore:dustSaltpeter>,
  30. ore:dustCharcoal>]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement