Difference between revisions of "ModTweaker:Thermal Expansion Support"

From MineTweaker 3
Jump to: navigation, search
Line 19: Line 19:
 
   
 
   
 
  // Fluid Transposer Recipes
 
  // Fluid Transposer Recipes
 +
// Fill
 
  //RF required, InputStack, OutputStack, InputFluid
 
  //RF required, InputStack, OutputStack, InputFluid
 
  mods.thermalexpansion.Transposer.addFillRecipe(2000, <minecraft:ice>, <minecraft:packed_ice>, <liquid:water> * 100);
 
  mods.thermalexpansion.Transposer.addFillRecipe(2000, <minecraft:ice>, <minecraft:packed_ice>, <liquid:water> * 100);
 
  //InputStack, InputFluid
 
  //InputStack, InputFluid
 +
//Extract
 
  mods.thermalexpansion.Transposer.removeFillRecipe(<minecraft:glass_bottle>, <liquid:water>);
 
  mods.thermalexpansion.Transposer.removeFillRecipe(<minecraft:glass_bottle>, <liquid:water>);
 
  //RF required, InputStack, OutputStack, InputFluid, Chance for OutputStack //Set chance to 100 for guaranteed OutputStack
 
  //RF required, InputStack, OutputStack, InputFluid, Chance for OutputStack //Set chance to 100 for guaranteed OutputStack

Revision as of 13:20, 11 January 2015

Handlers Supported

The following handlers are supported:

  • Induction Smelter (0.6+)
  • Fluid Transposer (0.6+)
  • Magma Crucible (0.6+)
  • Pulverizer (0.6+)
  • Redstone Furnace (0.6+)
  • Sawmill (0.6+)

CAUTION: Modifiying Thermal Expansion via Modtweaker might sometimes require a restart of the game, especially if you remove recipes. Somtimes removing recipes will not even work.

Each of these handlers can have recipes added or removed:

// Induction Smelter Recipes
//RF required, InputStack, InputStack2, OutputStack, OutputStack2, Chance for OutputStack2 //The last two are optional
mods.thermalexpansion.Smelter.addRecipe(800, <minecraft:dye:1>, <minecraft:sand>, <minecraft:stained_glass:14>, <minecraft:dye:15>, 20);
//InputStack, InputStack1 //The last one is optional, InputStacks are ingame reversed - InputStack is the right input slot ingame, InputStack1 is the left input slot ingame
mods.thermalexpansion.Smelter.removeRecipe(<minecraft:redstone_ore>, <minecraft:sand>);

// Fluid Transposer Recipes
// Fill
//RF required, InputStack, OutputStack, InputFluid
mods.thermalexpansion.Transposer.addFillRecipe(2000, <minecraft:ice>, <minecraft:packed_ice>, <liquid:water> * 100);
//InputStack, InputFluid
//Extract
mods.thermalexpansion.Transposer.removeFillRecipe(<minecraft:glass_bottle>, <liquid:water>);
//RF required, InputStack, OutputStack, InputFluid, Chance for OutputStack //Set chance to 100 for guaranteed OutputStack
mods.thermalexpansion.Transposer.addExtractRecipe(2000, <minecraft:leaves:*>, <minecraft:stick>, <liquid:water> * 50, 100);
//InputStack
mods.thermalexpansion.Transposer.removeExtractRecipe(<minecraft:water_bucket>);

// Magma Crucible Recipes
//RF required, InputStack, OutputFluid // OutputFluid over 8000 will not render mB output [1] in NEI, OutputFluid can not go higher than 10000mB
mods.thermalexpansion.Crucible.addRecipe(500000, <minecraft:dragon_egg>, <liquid:ender> * 8000);
//InputStack
mods.thermalexpansion.Crucible.removeRecipe(<minecraft:netherrack>);

// Pulverizer Recipes
//RF required, InputStack, OutputStack, OutputStack2, Chance for OutputStack2 //The last two are optional
mods.thermalexpansion.Pulverizer.addRecipe(3000, <minecraft:flint_and_steel>, <minecraft:flint>, <minecraft:iron_ingot>, 80);
//InputStack
mods.thermalexpansion.Pulverizer.removeRecipe(<minecraft:reeds>);

// Redstone Furnace Recipes
//RF required, InputStack, OutputStack
mods.thermalexpansion.Furnace.addRecipe(16000, <minecraft:obsidian>, <minecraft:netherrack>);
//InputStack //Recommended to sync with "furnace.remove(<YourItem:YourItem>);"
mods.thermalexpansion.Furnace.removeRecipe(<minecraft:potato>);

// Sawmill Recipes
//RF required, InputStack, OutputStack, OutputStack2, Chance for OutputStack2 //The last two are optional
mods.thermalexpansion.Sawmill.addRecipe(2400, <minecraft:ladder>, <minecraft:stick> * 5, <ThermalExpansion:material:512>, 100);
//InputStack
mods.thermalexpansion.Sawmill.removeRecipe(<minecraft:bed>);



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