Smeltery - TFC-Metallum/TFCTech GitHub Wiki

For manipulating Smeltery recipes, a hook is provided:

import mods.tfctech.Smeltery; // Imports the Smeltery methods into your script
import mods.tfctech.SmelteryRecipeBuilder; // Imports the smeltery recipe builder into your script
// Returns a recipe builder
var builder as SmelteryRecipeBuilder;
builder = Smeltery.addRecipe(String registryName, ILiquidStack output, float meltTemp);
// Adds input to the recipe (recipes can have between 1 and 8 inputs).
builder.addInput(IIngredient input);
// Builds and register the recipe
builder.build();
// Removes all recipes that have a given output
Smeltery.removeRecipe(ILiquidStack output);
// Removes a single recipe by registry name
Smeltery.removeRecipe(String registryName);

Important things to note: