Blast furnace, coke oven, alloy kiln formula magic reform (immersion engineering) [IE] immersive engineering

Need a module: immersion project, crafttweaker

blast furnace:

Remove blast furnace fuel:

mods.immersivengineering.blastfurnace.removefuel ();

Add blast furnace fuel:

mods.immersivengineering.blastfurnace.addfuel (, burning time);

Example: Set a flame stick to burn in the blast furnace for 60 seconds

Mods.immersivengineering.blastfurnace.addfuel (, 1200);

Remove recipe:

mods.immersivengineering.blastfurnace.removerecipe ();

Add formula:

mods.immersivengineering.blastfurnace.addrecipe (, , spend time);

Example: Use a soil to spend 10 seconds in a blast furnace to burn into a diamond

mods.immersivengineering.blastfurnace.addrecipe (, , 200);

Note: The burning time, the time unit is tick.(1S = 20tick)

Jiao oven:

Remove recipe:

mods.immersivengineering.cokeoven.removerecipe ();

Add formula:

mods.immersivengineering.cokeoveen.addrecipe (, generates heterohen oil, , time);

Example: A iron ingot burns in the coke oven for 5 seconds to become a gold ingot and generate 100MB heterohenol oil

Mods.immersivengineering.coKeoven.addrecipe (, 100, , 100);

Note: The heterophenol oil unit is MB, and the time unit is Tick.(1S = 20tick)

Alloy kiln:

Remove recipe:

mods.immersivengineering.alloysmelter.removerecipe ();

Add formula:

mods.immersivengineering.alloysmelter.addrecipe

example:

A iron ingot and a soil are fired into 2 gold ingots in 5 seconds in the alloy kiln

Mods.immersivengineering.Alloysmelter.addRecipe (*2, , , 100);

Note: The combustion time unit is tick.(1S = 20tick)