Difference between revisions of "Mods:TSteelworks Support"

From MineTweaker 3
Jump to: navigation, search
(Created page with "== Handlers Supported == The following handlers are supported: * Blast Furnace * Coke Oven * Rock Crusher * Rolling Machine Each of these handlers can have recipes added or...")
 
m (5 revisions imported)
 
(4 intermediate revisions by one other user not shown)
Line 2: Line 2:
  
 
The following handlers are supported:
 
The following handlers are supported:
* Blast Furnace
+
* High Oven
* Coke Oven
+
* Mixing Agents
* Rock Crusher
+
* Mixing Recipes
* Rolling Machine
+
  
 
Each of these handlers can have recipes added or removed:
 
Each of these handlers can have recipes added or removed:
  
  //Blast Furnace Recipes
+
  Parameters marked as <span style="color:red">red</span> are optional and can be left out
//InputStack, matchDamage, matchNBT, Cook time, OutputStack
+
 
mods.railcraft.BlastFurnace.addRecipe(<minecraft:stone>, false, false, 130, <minecraft:iron_ingot>);
+
  //High Oven
//OutputStack
+
  //InputStack, BurnTime, HeatRate //BurnTime is the amount of seconds the fuel will last, HeatRate is amount of °C per second, Charcoal has 140 BT ; 4 HR
mods.railcraft.BlastFurnace.removeRecipe(<Railcraft:tile.railcraft.cube:2>);
+
  mods.tsteelworks.highoven.addFuel(<minecraft:fire_charge>, 800, 5);
+
  //InputStack
  //Coke oven recipes
+
  mods.tsteelworks.highoven.removeFuel(<minecraft:coal:1>);
  //InputStack, matchDamage, matchNBT, OutputStack, fluidOutput, Cook time
+
  //InputStack, isOre, OutputFluid, MeltingTemperature //If isOre is true, TE4 slag will output out of the High Oven Controller/Duct
  mods.railcraft.CokeOven.addRecipe(<minecraft:stone>, false, false, <minecraft:coal>, <liquid:lava> * 100, 100);
+
  mods.tsteelworks.highoven.addMeltable(<TConstruct:ore.berries.one:8>, true, <liquid:iron.molten> * 432, 600);
  //OutputStack
+
  mods.railcraft.CokeOven.removeRecipe(<Railcraft:tile.railcraft.cube>);
+
+
//RockCrusher recipes
+
  //InputStack, matchDamage, matchNBT, OutputStacks, Chance 
+
  mods.railcraft.RockCrusher.addRecipe(<minecraft:diamond>, false, false, [<minecraft:cobblestone>, <minecraft:coal>], [0.1, 0.3]);
+
 
  //InputStack
 
  //InputStack
  mods.railcraft.RockCrusher.removeRecipe(<minecraft:stone>);
+
  mods.tsteelworks.highoven.removeMeltable(<minecraft:iron_ore>);
 
   
 
   
  //Rolling machine recipes
+
  //Mixing Agent //OreDicts are needed
  //OutputStack, Input ingredients
+
  //InputOredict, ConsumeChance
  mods.railcraft.Rolling.addShaped(<minecraft:stone>, [[<minecraft:coal>, <minecraft:stick>], [<minecraft:coal_block>,
+
  mods.tsteelworks.mix.addOxidizer("treeLeaves", 60);
<minecraft:stick>]]);
+
//InputOredict, ConsumeChance
  //OutputStack
+
mods.tsteelworks.mix.addReducer("gemQuartz", 35);
  mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rail> * 8);
+
//InputOredict, ConsumeChance
 +
mods.tsteelworks.mix.addPurifier("blockLimestone", 85);
 +
//Agent
 +
mods.tsteelworks.mix.removeAgent("dustRedstone");
 +
 
 +
//Mixing Recipes
 +
//InputFluid, Oxidizer, Purifier, Reducer, OutputFluid
 +
mods.tsteelworks.mix.addFluidMix(<liquid:iron.molten>, "treeLeaves", "gemQuartz", "blockLimestone", <liquid:steel.molten>);
 +
//InputFluid, Oxidizer, Purifier, Reducer, OutputStack //OutputStack will output out of the High Oven Controller/Duct
 +
mods.tsteelworks.mix.addSolidMix(<liquid:iron.molten>, "treeLeaves", "gemQuartz", "hambone", <minecraft:flint>);
 +
  //InputFluid, Oxidizer, Purifier, Reducer
 +
  mods.tsteelworks.mix.removeMix(<liquid:iron.molten>, "dustGunpowder", "dustRedstone", "blockSand");
  
 
{{ModTweakerNavigation}}
 
{{ModTweakerNavigation}}

Latest revision as of 14:36, 12 September 2023

Handlers Supported

The following handlers are supported:

  • High Oven
  • Mixing Agents
  • Mixing Recipes

Each of these handlers can have recipes added or removed:

Parameters marked as red are optional and can be left out
 
//High Oven
//InputStack, BurnTime, HeatRate //BurnTime is the amount of seconds the fuel will last, HeatRate is amount of °C per second, Charcoal has 140 BT ; 4 HR
mods.tsteelworks.highoven.addFuel(<minecraft:fire_charge>, 800, 5);
//InputStack
mods.tsteelworks.highoven.removeFuel(<minecraft:coal:1>);
//InputStack, isOre, OutputFluid, MeltingTemperature //If isOre is true, TE4 slag will output out of the High Oven Controller/Duct
mods.tsteelworks.highoven.addMeltable(<TConstruct:ore.berries.one:8>, true, <liquid:iron.molten> * 432, 600);
//InputStack
mods.tsteelworks.highoven.removeMeltable(<minecraft:iron_ore>);

//Mixing Agent //OreDicts are needed
//InputOredict, ConsumeChance
mods.tsteelworks.mix.addOxidizer("treeLeaves", 60);
//InputOredict, ConsumeChance
mods.tsteelworks.mix.addReducer("gemQuartz", 35);
//InputOredict, ConsumeChance
mods.tsteelworks.mix.addPurifier("blockLimestone", 85);
//Agent
mods.tsteelworks.mix.removeAgent("dustRedstone");
 
//Mixing Recipes
//InputFluid, Oxidizer, Purifier, Reducer, OutputFluid
mods.tsteelworks.mix.addFluidMix(<liquid:iron.molten>, "treeLeaves", "gemQuartz", "blockLimestone", <liquid:steel.molten>);
//InputFluid, Oxidizer, Purifier, Reducer, OutputStack //OutputStack will output out of the High Oven Controller/Duct
mods.tsteelworks.mix.addSolidMix(<liquid:iron.molten>, "treeLeaves", "gemQuartz", "hambone", <minecraft:flint>);
//InputFluid, Oxidizer, Purifier, Reducer
mods.tsteelworks.mix.removeMix(<liquid:iron.molten>, "dustGunpowder", "dustRedstone", "blockSand");



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