Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Open the config at: /.minecraft/config/aobd.cfg
- //There is a part called "Custom", you need to change the value of "S:items" to look like this:
- // S:items=dirtyGravel,cleanGravel,reduced,oreCrushed,crushedPurified,dustTiny
- //This Modtweaker-Script refers to certain Items, and editing the AOBD.cfg will guarantee their existance.
- ## Oreblocks #################################################
- val OreblockMetallurgy = <Metallurgy:base.ore>;
- //Dense Oreblock Pulverises into Oreblock, no need to include
- #val OreblockDense = <denseores:block0:8>;
- val OreblockNether = <NetherOres:tile.netherores.ore.0:6>;
- ## Ingots #################################################
- val IngotMetallurgy = <Metallurgy:copper.ingot>;
- ## Liquid #################################################
- val MoltenCopper = <liquid:copper.molten>;
- val LiquidWater = <liquid:water>;
- val LiquidPetrotheum = <liquid:petrotheum>;
- val LiquidAerotheum = <liquid:aerotheum>;
- ## Dust #################################################
- val DustMetallurgy = <Metallurgy:base.dust>;
- ## Purification Pieces###############################################
- val Pure01DirtyGravel = <aobd:dirtyGravelCopper>;
- val Pure02CleanGravel = <aobd:cleanGravelCopper>;
- val Pure03Reduced = <aobd:reducedCopper>;
- val Pure04Crushed = <aobd:oreCrushedCopper>;
- val Pure05CrushedPurified = <aobd:crushedPurifiedCopper>;
- val Pure06TinyDust = <aobd:dustTinyCopper>;
- ## Misc. #################################################
- val Sand = <minecraft:sand>;
- val AerotheumDust = <ThermalFoundation:material:514>;
- val PetrotheumDust = <ThermalFoundation:material:515>;
- #####################################################################
- //Step 01 - Pulverising
- # InputRF, InputStack, OutputStack1, OutputStack2, Chance
- mods.thermalexpansion.Pulverizer.addRecipe (3200, OreblockNether, Pure01DirtyGravel*4, Pure01DirtyGravel, 15);
- mods.thermalexpansion.Pulverizer.addRecipe (4000, OreblockMetallurgy, Pure01DirtyGravel*2, Pure01DirtyGravel, 15);
- //Step 02 - Ore Washing (Fluid Transposer with Water)
- # InputRF, InputStack, OutputStack, InputFluid
- mods.thermalexpansion.Transposer.addFillRecipe (4000, Pure01DirtyGravel, Pure02CleanGravel, <liquid:water>*4500);
- //Step 03 - Reduction (Inductionsmelter with Sand)
- # InputRF, InputStack1, InputStack2, OutputStack1, OutputStack2, Chance
- mods.thermalexpansion.Smelter.addRecipe (8000, <minecraft:sand>, Pure02CleanGravel, Pure03Reduced*2, Pure03Reduced, 10);
- //Step 04 - Pulverising
- # InputRF, InputStack1, OutputStack1, OutputStack2, Chance
- mods.thermalexpansion.Pulverizer.addRecipe (4000, Pure03Reduced, Pure04Crushed, Pure04Crushed, 15);
- //Step 05 - Ore Treatment (Fluidtransposer with Petrotheum)
- # InputRF, InputStack, OutputStack, InputFluid
- mods.thermalexpansion.Transposer.addFillRecipe (6500, Pure04Crushed, Pure05CrushedPurified*3,LiquidPetrotheum*500);
- //Step 06 - Final Ore Treatment (Fluidtransposer with Aerotheum)
- # InputRF, InputStack, OutputStack, InputFluid
- mods.thermalexpansion.Transposer.addFillRecipe (6500, Pure05CrushedPurified, Pure06TinyDust*4, LiquidAerotheum*500);
Advertisement
Add Comment
Please, Sign In to add comment