This page relates to Thermal Expansion, which has built-in support!
Redstone Furnace / Furnace
Link to redstone-furnace--furnace
Methods
Link to methods
Add Recipe
Link to add-recipe
The following script will add a recipe that will output a Gold Ingot by Smelting an Iron Ingot, creating 2 EXP and consuming 500 RF.
ZenScript Copy// <recipetype:thermal:furnace>.addRecipe(String name, IItemStack output, IIngredient ingredient, float experience, int energy);
<recipetype:thermal:furnace>.addRecipe("furnace_test", <item:minecraft:gold_ingot>, <item:minecraft:iron_ingot>, 2, 500);
Remove Recipes
Link to remove-recipes
The following script will remove all Furnace recipes that output a Gold Ingot.
ZenScript Copy// <recipetype:thermal:furnace>.removeRecipe(IItemStack... output);
<recipetype:thermal:furnace>.removeRecipe(<item:minecraft:gold_ingot>);