Namorax

Modtweakerscript - Ore Refining

Mar 8th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.    
  2.    
  3.    
  4. //Open the config at:    /.minecraft/config/aobd.cfg
  5. //There is a part called "Custom", you need to change the value of "S:items" to look like this:
  6. //     S:items=dirtyGravel,cleanGravel,reduced,oreCrushed,crushedPurified,dustTiny
  7. //This Modtweaker-Script refers to certain Items, and editing the AOBD.cfg will guarantee their existance.
  8.  
  9.    
  10.        
  11. ## Oreblocks        #################################################
  12.     val OreblockMetallurgy =    <Metallurgy:base.ore>;
  13.     //Dense Oreblock Pulverises into Oreblock, no need to include
  14.     #val OreblockDense =        <denseores:block0:8>;
  15.     val OreblockNether =        <NetherOres:tile.netherores.ore.0:6>;
  16. ## Ingots           #################################################
  17.     val IngotMetallurgy =       <Metallurgy:copper.ingot>;
  18. ## Liquid           #################################################
  19.     val MoltenCopper =          <liquid:copper.molten>;
  20.     val LiquidWater =           <liquid:water>;
  21.     val LiquidPetrotheum =      <liquid:petrotheum>;
  22.     val LiquidAerotheum =       <liquid:aerotheum>;
  23. ## Dust             #################################################
  24.     val DustMetallurgy =        <Metallurgy:base.dust>;
  25. ## Purification Pieces###############################################
  26.     val Pure01DirtyGravel =     <aobd:dirtyGravelCopper>;
  27.     val Pure02CleanGravel =     <aobd:cleanGravelCopper>;
  28.     val Pure03Reduced =         <aobd:reducedCopper>;
  29.     val Pure04Crushed =         <aobd:oreCrushedCopper>;
  30.     val Pure05CrushedPurified = <aobd:crushedPurifiedCopper>;
  31.     val Pure06TinyDust =        <aobd:dustTinyCopper>;
  32. ## Misc.            #################################################
  33.     val Sand =                  <minecraft:sand>;
  34.     val AerotheumDust =         <ThermalFoundation:material:514>;
  35.     val PetrotheumDust =        <ThermalFoundation:material:515>;
  36. #####################################################################
  37. //Step 01 - Pulverising
  38.     #                                               InputRF,    InputStack,             OutputStack1,           OutputStack2,       Chance
  39.     mods.thermalexpansion.Pulverizer.addRecipe      (3200,      OreblockNether,         Pure01DirtyGravel*4,    Pure01DirtyGravel,  15);
  40.     mods.thermalexpansion.Pulverizer.addRecipe      (4000,      OreblockMetallurgy,     Pure01DirtyGravel*2,    Pure01DirtyGravel,  15);
  41. //Step 02 - Ore Washing (Fluid Transposer with Water)
  42.     #                                               InputRF,    InputStack,             OutputStack,            InputFluid
  43.     mods.thermalexpansion.Transposer.addFillRecipe  (4000,      Pure01DirtyGravel,      Pure02CleanGravel,      <liquid:water>*4500);
  44. //Step 03 - Reduction (Inductionsmelter with Sand)
  45.     #                                               InputRF,    InputStack1,            InputStack2,            OutputStack1,       OutputStack2,       Chance
  46.     mods.thermalexpansion.Smelter.addRecipe         (8000,      <minecraft:sand>,       Pure02CleanGravel,      Pure03Reduced*2,    Pure03Reduced,      10);
  47. //Step 04 - Pulverising
  48.     #                                               InputRF,    InputStack1,            OutputStack1,           OutputStack2,       Chance
  49.     mods.thermalexpansion.Pulverizer.addRecipe      (4000,      Pure03Reduced,          Pure04Crushed,          Pure04Crushed,      15);
  50. //Step 05 - Ore Treatment (Fluidtransposer with Petrotheum)
  51.     #                                               InputRF,    InputStack,             OutputStack,            InputFluid
  52.     mods.thermalexpansion.Transposer.addFillRecipe  (6500,      Pure04Crushed,          Pure05CrushedPurified*3,LiquidPetrotheum*500);
  53. //Step 06 - Final Ore Treatment (Fluidtransposer with Aerotheum)
  54.     #                                               InputRF,    InputStack,             OutputStack,            InputFluid
  55.     mods.thermalexpansion.Transposer.addFillRecipe  (6500,      Pure05CrushedPurified,  Pure06TinyDust*4,       LiquidAerotheum*500);
Advertisement
Add Comment
Please, Sign In to add comment