Difference between revisions of "ModTweaker:Mekanism Support"
From MineTweaker 3
(Created page with "== Mekanism is available in v0.5+ == == Handlers Supported == The following handlers are supported: * Chemical Crystallizer * Chemical Dissolution Chamber * Chemical Infuser...") |
(→Handlers Supported) |
||
Line 20: | Line 20: | ||
Each of these handlers can have recipes added or removed: | Each of these handlers can have recipes added or removed: | ||
+ | |||
+ | //Chemical Crystallizer | ||
+ | //GasInput OutputStack | ||
+ | mods.mekanism.chemical.Crystallizer.addRecipe(<gas:oxygen>, <minecraft:water>); | ||
+ | //InputStack | ||
+ | mods.mekanism.chemical.Crystallizer.removeRecipe(<Mekanism:Crystal:3>); | ||
+ | |||
+ | //Chemical Dissolution | ||
+ | //InputStack, GasOutput | ||
+ | mods.mekanism.chemical.Dissolution.addRecipe(<minecraft:iron_ingot>, <gas:oxygen>); | ||
+ | //InputStack or OreInput | ||
+ | mods.mekanism.chemical.Dissolution.removeRecipe(<minecraft:iron_ore>); | ||
+ | mods.mekanism.chemical.Dissolution.removeRecipe(<ore:oreCopper>); | ||
+ | |||
+ | //Chemical Infuser | ||
+ | //LeftGas, RightGas, OutputGas | ||
+ | mods.mekanism.chemical.Infuser.addRecipe(<gas:iron>, <gas:gold>, <gas:copper>); | ||
+ | //OutputGas | ||
+ | mods.mekanism.chemical.Infuser.removeRecipe(<gas:sulfuricAcid>); | ||
+ | |||
+ | //Chemical Injection | ||
+ | //InputStack, InputGas(hydrogenChloride or water), OutputStack | ||
+ | mods.mekanism.chemical.Injection.addRecipe(<minecraft:string>, <gas:hydrogenChloride>, <minecraft:web>); | ||
+ | //OutputStack | ||
+ | mods.mekanism.chemical.Injection.removeRecipe(<Mekanism:Dust:10>); | ||
+ | |||
+ | //Chemical Oxidizer | ||
+ | //InputStack, OutputGas | ||
+ | mods.mekanism.chemical.Oxidizer.addRecipe(<minecraft:coal>, <gas:hydrogen>); | ||
+ | //OutputGas | ||
+ | mods.mekanism.chemical.Oxidizer.removeRecipe(<gas:brine>); | ||
+ | |||
+ | //Chemical Washer | ||
+ | //InputGas, OutputGas | ||
+ | mods.mekanism.chemical.Washer.addRecipe(<gas:hydrogen>, <gas:sodium>); | ||
+ | //OutputGas | ||
+ | mods.mekanism.chemical.Washer.removeRecipe(<gas:cleanCopper>); | ||
+ | mods.mekanism.chemical.Washer.removeRecipe(<gas:cleanGold>); | ||
+ | mods.mekanism.chemical.Washer.removeRecipe(<gas:cleanIron>); | ||
+ | |||
+ | //Combiner | ||
+ | //InputStack, OutputStack | ||
+ | mods.mekanism.Combiner.addRecipe(<minecraft:stone> * 4, <minecraft:stonebrick>); | ||
+ | //OutputStack | ||
+ | mods.mekanism.Combiner.removeRecipe(<minecraft:redstone_ore>); | ||
+ | |||
+ | //Compressor | ||
+ | //InputStack, OutputStack | ||
+ | mods.mekanism.Compressor.addRecipe(<minecraft:stone> * 4, <minecraft:stonebrick>); | ||
+ | //OutputStack | ||
+ | mods.mekanism.Compressor.removeRecipe(<Mekanism:Ingot:3>); | ||
+ | |||
+ | //Crusher | ||
+ | //InputStack, OutputStack | ||
+ | mods.mekanism.Crusher.addRecipe(<minecraft:double_plant:4>, <minecraft:dye:1> * 5); | ||
+ | //OutputStack | ||
+ | mods.mekanism.Crusher.removeRecipe(<minecraft:gunpowder>); | ||
+ | |||
+ | //Enrichment Chamber | ||
+ | //InputStack, OutputStack | ||
+ | mods.mekanism.Enrichment.addRecipe(<minecraft:diamond_ore>, <minecraft:diamond> * 8); | ||
+ | //InputStack | ||
+ | mods.mekanism.Enrichment.removeRecipe(<minecraft:diamond>); | ||
+ | |||
+ | //Metallurgic Infuser | ||
+ | //InfusionTypeString, InfusionAmount, InputStack, OutputStack (ValidInfusionTypes: CARBON, TIN, DIAMOND, REDSTONE, FUNGI, BIO, OBSIDIAN) | ||
+ | mods.mekanism.Infuser.addRecipe("CARBON", 20, <minecraft:string> * 9, <minecraft:web>); | ||
+ | //OutputStack | ||
+ | mods.mekanism.Infuser.removeRecipe(<minecraft:mossy_cobblestone>); | ||
+ | |||
+ | //Purification Chamber | ||
+ | //InputStack, OutputStack | ||
+ | mods.mekanism.Purification.addRecipe(<minecraft:mossy_cobblestone>, <minecraft:cobblestone>); | ||
+ | //OutputStack | ||
+ | mods.mekanism.Purification.removeRecipe(<Mekanism:Clump:1>); | ||
+ | |||
+ | //Pressurised Reaction Chamber | ||
+ | //ReactantSolid, ReactantLiquid, ReactantGas, OutputStack, OutputGas, Energy, Ticks | ||
+ | mods.mekanism.Reaction.addRecipe(<minecraft:stone>, <liquid:lava>, <gas:iron>, <minecraft:diamond_ore>, <gas:cleanIron>, 55.5, 5); | ||
+ | //OutputStack, OutputGas | ||
+ | mods.mekanism.Reaction.removeRecipe(<Mekanism:Polyethene>, <gas:oxygen>); | ||
+ | |||
+ | //Precision Sawmill | ||
+ | //InputStack, OutputStack1, OutputStack2*, Chance* | ||
+ | mods.mekanism.Sawmill.addRecipe(<Mariculture:woods>, <minecraft:log> * 4, null, | ||
+ | //InputStack | ||
+ | mods.mekanism.Sawmill.removeRecipe(<minecraft:fence>); | ||
+ | |||
+ | //Electrolytic Separator | ||
+ | //InputLiquid, OutputGas1, OutputGas2 | ||
+ | mods.mekanism.Separator.addRecipe(<liquid:lava>, <gas:oxygen>, <gas:iron>); | ||
+ | //InputLiquid | ||
+ | mods.mekanism.Separator.removeRecipe(<liquid:water>); | ||
{{ModTweakerNavigation}} | {{ModTweakerNavigation}} |
Revision as of 20:27, 20 July 2014
Mekanism is available in v0.5+
Handlers Supported
The following handlers are supported:
- Chemical Crystallizer
- Chemical Dissolution Chamber
- Chemical Infuser
- Chemical Injection Chamber
- Chemical Oxidizer
- Chemical Washer
- Combiner
- Crusher
- Electrolytic Seperator
- Enrichment Chamber
- Metallurgic Infuser
- Osmium Compressor
- Purification Chamber
- Precision Sawmill
- Pressurised Reaction Chamber
Each of these handlers can have recipes added or removed:
//Chemical Crystallizer //GasInput OutputStack mods.mekanism.chemical.Crystallizer.addRecipe(<gas:oxygen>, <minecraft:water>); //InputStack mods.mekanism.chemical.Crystallizer.removeRecipe(<Mekanism:Crystal:3>); //Chemical Dissolution //InputStack, GasOutput mods.mekanism.chemical.Dissolution.addRecipe(<minecraft:iron_ingot>, <gas:oxygen>); //InputStack or OreInput mods.mekanism.chemical.Dissolution.removeRecipe(<minecraft:iron_ore>); mods.mekanism.chemical.Dissolution.removeRecipe(<ore:oreCopper>); //Chemical Infuser //LeftGas, RightGas, OutputGas mods.mekanism.chemical.Infuser.addRecipe(<gas:iron>, <gas:gold>, <gas:copper>); //OutputGas mods.mekanism.chemical.Infuser.removeRecipe(<gas:sulfuricAcid>); //Chemical Injection //InputStack, InputGas(hydrogenChloride or water), OutputStack mods.mekanism.chemical.Injection.addRecipe(<minecraft:string>, <gas:hydrogenChloride>, <minecraft:web>); //OutputStack mods.mekanism.chemical.Injection.removeRecipe(<Mekanism:Dust:10>); //Chemical Oxidizer //InputStack, OutputGas mods.mekanism.chemical.Oxidizer.addRecipe(<minecraft:coal>, <gas:hydrogen>); //OutputGas mods.mekanism.chemical.Oxidizer.removeRecipe(<gas:brine>); //Chemical Washer //InputGas, OutputGas mods.mekanism.chemical.Washer.addRecipe(<gas:hydrogen>, <gas:sodium>); //OutputGas mods.mekanism.chemical.Washer.removeRecipe(<gas:cleanCopper>); mods.mekanism.chemical.Washer.removeRecipe(<gas:cleanGold>); mods.mekanism.chemical.Washer.removeRecipe(<gas:cleanIron>); //Combiner //InputStack, OutputStack mods.mekanism.Combiner.addRecipe(<minecraft:stone> * 4, <minecraft:stonebrick>); //OutputStack mods.mekanism.Combiner.removeRecipe(<minecraft:redstone_ore>); //Compressor //InputStack, OutputStack mods.mekanism.Compressor.addRecipe(<minecraft:stone> * 4, <minecraft:stonebrick>); //OutputStack mods.mekanism.Compressor.removeRecipe(<Mekanism:Ingot:3>); //Crusher //InputStack, OutputStack mods.mekanism.Crusher.addRecipe(<minecraft:double_plant:4>, <minecraft:dye:1> * 5); //OutputStack mods.mekanism.Crusher.removeRecipe(<minecraft:gunpowder>); //Enrichment Chamber //InputStack, OutputStack mods.mekanism.Enrichment.addRecipe(<minecraft:diamond_ore>, <minecraft:diamond> * 8); //InputStack mods.mekanism.Enrichment.removeRecipe(<minecraft:diamond>); //Metallurgic Infuser //InfusionTypeString, InfusionAmount, InputStack, OutputStack (ValidInfusionTypes: CARBON, TIN, DIAMOND, REDSTONE, FUNGI, BIO, OBSIDIAN) mods.mekanism.Infuser.addRecipe("CARBON", 20, <minecraft:string> * 9, <minecraft:web>); //OutputStack mods.mekanism.Infuser.removeRecipe(<minecraft:mossy_cobblestone>); //Purification Chamber //InputStack, OutputStack mods.mekanism.Purification.addRecipe(<minecraft:mossy_cobblestone>, <minecraft:cobblestone>); //OutputStack mods.mekanism.Purification.removeRecipe(<Mekanism:Clump:1>); //Pressurised Reaction Chamber //ReactantSolid, ReactantLiquid, ReactantGas, OutputStack, OutputGas, Energy, Ticks mods.mekanism.Reaction.addRecipe(<minecraft:stone>, <liquid:lava>, <gas:iron>, <minecraft:diamond_ore>, <gas:cleanIron>, 55.5, 5); //OutputStack, OutputGas mods.mekanism.Reaction.removeRecipe(<Mekanism:Polyethene>, <gas:oxygen>); //Precision Sawmill //InputStack, OutputStack1, OutputStack2*, Chance* mods.mekanism.Sawmill.addRecipe(<Mariculture:woods>, <minecraft:log> * 4, null, //InputStack mods.mekanism.Sawmill.removeRecipe(<minecraft:fence>); //Electrolytic Separator //InputLiquid, OutputGas1, OutputGas2 mods.mekanism.Separator.addRecipe(<liquid:lava>, <gas:oxygen>, <gas:iron>); //InputLiquid mods.mekanism.Separator.removeRecipe(<liquid:water>);
ModTweaker Supported Mods |
---|
Applied Energistics 2 | Aura Cascade | Botania | Chisel 2 | Ex Nihilo | Extra Utilities | Factorization | Flaxbeard's Steam Power Support | Forestry | Mariculture | Mekanism | Metallurgy 4 | PneumaticCraft | Railcraft | Thaumcraft 4 | Thermal Expansion | Tinker's Construct |