Difference between revisions of "ModTweaker:Thermal Expansion Support"

From MineTweaker 3
Jump to: navigation, search
Line 27: Line 27:
 
  //InputStack
 
  //InputStack
 
  mods.thermalexpansion.Transposer.removeExtractRecipe(<minecraft:water_bucket>);
 
  mods.thermalexpansion.Transposer.removeExtractRecipe(<minecraft:water_bucket>);
 +
 +
// Magma Crucible Recipes
 +
//RF required, InputStack, OutputFluid // OutputFluid over 8000 will not render text [http://i.imgur.com/nIWMS4t.png] in NEI, OutputFluid can not go over 10000
 +
mods.thermalexpansion.Crucible.addRecipe(500000, <minecraft:dragon_egg>, <liquid:ender> * 10000);
 +
//InputStack
 +
mods.thermalexpansion.Crucible.removeRecipe(<minecraft:netherrack>);

Revision as of 12:06, 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.

Each of these handlers can have recipes added or removed:

// Induction Smelter Recipes
//RF required, InputStack, InputStack2, OutputStack, OutputStack2, Chance for OutputStack2
mods.thermalexpansion.Smelter.addRecipe(800, <minecraft:dye:1>, <minecraft:sand>, <minecraft:stained_glass:14>, <ThermalExpansion:Rockwool:14>, 50); //The last two are optional
//InputStack, InputStack1 //The last one is optional, 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
//RF required, InputStack, OutputStack, InputFluid
mods.thermalexpansion.Transposer.addFillRecipe(2000, <minecraft:ice>, <minecraft:packed_ice>, <liquid:water> * 100);
//InputStack, InputFluid
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 text [1] in NEI, OutputFluid can not go over 10000
mods.thermalexpansion.Crucible.addRecipe(500000, <minecraft:dragon_egg>, <liquid:ender> * 10000);
//InputStack
mods.thermalexpansion.Crucible.removeRecipe(<minecraft:netherrack>);