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=oreBroken,dirtyGravel,cleanGravel,reduced,pebbles,dustDirty,orePowdered
- //This Modtweaker-Script refers to certain Items, and editing the AOBD.cfg will guarantee their existance.
- ## Oreblocks #################################################
- val Oreblock = <minecraft:iron.ore>;
- ## Nuggets ##############################################
- val Nugget = <ThermalFoundation:material:8>;
- ## Liquid ##############################################
- val MoltenOre = <liquid:iron.molten>;
- ## Misc ##############################################
- val Sand = <minecraft:sand>;
- val CoalDust = <ThermalFoundation:material:2>
- val CharcoalDust = <ThermalFoundation:material:3>
- ## Purification Pieces ##############################################
- val Pure1_BrokenOre = <aobd:oreBrokenIron>;
- val Pure2a_DirtyGravelOre = <aobd:dirtyGravelIron>;
- val Pure2b_CleanGravelOre = <aobd:cleanGravelIron>;
- val Pure3_ReducedOreChunks = <aobd:reducedIron>;
- val Pure4a_OrePebbles = <aobd:pebblesIron>;
- val Pure4b_DirtyOreDust = <aobd:dustDirtyIron>;
- val Pure5_PowderedOre = <aobd:orePowderedIron>;
- #####################################################################
- # Personal Ore-Refining Tweak
- #####################################################################
- // 1 Ore Block -> Fluid Transposer(Water) -> oreBrokenCopper (Ex Nihilo?)
- //
- //2a oreBrokenCopper -> Pulverizer -> oreDirtyGravelCopper (Factorisation?)
- //2b oreDirtyGravelCopper -> F-Transposer(Water) -> oreCleanedGravelCopper (Factorisation?)
- //
- // 3 oreCleanedGravelCopper -> Induction(Sand) -> oreReducedCopper (Factorisation?)
- //
- //4a oreReducedCopper -> Induction(Charcoaldust) -> orePebblesCopper (Magneticraft? TerrafirmaCraft?)
- //4b orePebblesCopper -> Pulverizer -> oredustDirtyCopper (Mekanism)
- //
- // 5 oredustDirtyCopper -> F-Transposer (Aerotheum) -> orePowderedCopper (Ex Nihilo)
- //
- // 6 orePowderedCopper -> F-Transposer (Petrotheum)-> Nugget
- #####################################################################
- //Step 01 - Ore Washing (Fluidtransposer+Water) InputRF, InputStack, OutputStack, InputFluid
- mods.thermalexpansion.Transposer.addFillRecipe (4300, Oreblock, Pure1_BrokenOre*2, <liquid:water>*4500);
- //Step 02a - Pulverising InputRF, InputStack, OutputStack1, OutputStack2, Chance
- mods.thermalexpansion.Pulverizer.addRecipe (4000, Pure1_BrokenOre, Pure2a_DirtyGravelOre, Pure2a_DirtyGravelOre, 10);
- //Step 02b - Gravel Washing (Fluidtransposer+Water) InputRF, InputStack, OutputStack, InputFluid
- mods.thermalexpansion.Transposer.addFillRecipe (3500, Pure2a_DirtyGravelOre, Pure2b_CleanGravelOre*4,<liquid:water>*4500);
- //Step 03 - Reduction (Inductionsmelter+Sand) InputRF, InputStack1, InputStack2, OutputStack1, OutputStack2, Chance
- mods.thermalexpansion.Smelter.addRecipe (8000, <minecraft:sand>, Pure2b_CleanGravelOre, Pure3_ReducedOreChunks*2, Pure3_ReducedOreChunks, 10);
- //Step 04a - Induction (Inductionsmelter+Coaldust) InputRF, InputStack1, InputStack2, OutputStack1, OutputStack2, Chance
- mods.thermalexpansion.Smelter.addRecipe (7800, CoalDust*4, Pure3_ReducedOreChunks, Pure4a_OrePebbles*2, Pure4a_OrePebbles, 10);
- mods.thermalexpansion.Smelter.addRecipe (7800, CharcoalDust*4, Pure3_ReducedOreChunks, Pure4a_OrePebbles*2, Pure4a_OrePebbles, 10);
- //Step 04b - Pulverising InputRF, InputStack1, OutputStack1, OutputStack2, Chance
- mods.thermalexpansion.Pulverizer.addRecipe (4000, Pure4a_OrePebbles, Pure4b_DirtyOreDust, Pure4b_DirtyOreDust, 10);
- //Step 05 - Enrichment (Fluidtransposer+Aerotheum) InputRF, InputStack, OutputStack, InputFluid
- mods.thermalexpansion.Transposer.addFillRecipe (6500, Pure4b_DirtyOreDust, Pure5_PowderedOre*3, LiquidAerotheum*500);
- //Step 06 - Crushing (Fluidtransposer#Petrotheum) InputRF, InputStack, OutputStack, InputFluid
- mods.thermalexpansion.Transposer.addFillRecipe (6500, Pure5_PowderedOre, Nugget*1, LiquidPetrotheum*500);
- # //Add Smeltery-Recipes for the new Items
- # // InputStack, OutputFluid, TemperatureAmount, BlockRender
- # mods.tconstruct.Smeltery.addMelting(Pure1_BrokenOre, MoltenOre * 144, 550, Oreblock);
- # mods.tconstruct.Smeltery.addMelting(Pure2b_CleanGravelOre, MoltenOre * 144, 550, Oreblock);
- # mods.tconstruct.Smeltery.addMelting(Pure3_ReducedOreChunks, MoltenOre * 96, 550, Oreblock);
- # mods.tconstruct.Smeltery.addMelting(Pure4b_DirtyOreDust, MoltenOre * 96, 550, Oreblock);
- # mods.tconstruct.Smeltery.addMelting(Pure5_PowderedOre, MoltenOre * 32, 550, Oreblock);
Advertisement
Add Comment
Please, Sign In to add comment