te.smelter
Tweaks involving the Induction Smelter from Thermal Expansion.
Note
The smelter command can be used to view recipes.
add
te.smelter.add : item output, item inputA, item inputB, integer energy
te.smelter.add : item output, item inputA, item inputB, item secondaryOutput, integer secondaryChance, integer energy
Adds a recipe to the Induction Smelter.
Example
#convert diamond and coal to emerald, with a 50% chance of getting an apple
te.smelter.add : item(minecraft:emerald), item(minecraft:diamond), item(minecraft:coal), item(minecraft:apple) 50, 2000;
remove
te.smelter.remove : all *
te.smelter.remove : item inputA, item inputB
Remove all or selected items.
Example
#disable all recipes
te.smelter.remove : *;
#disable the recipe for diamond and coal
te.smelter.remove : item(minecraft:diamond), item(minecraft:coal);
