The Steelworks is a machine that converts an input item and fluid into an output item using steam.

You can call the Steelworks package using mods.steamagerevolution.Steelworks.

This function removes the first recipe they find with the given IItemStack output:

java
Copy
mods.steamagerevolution.Steelworks.removeRecipe(IItemStack output);

// Examples
mods.steamagerevolution.Steelworks.removeRecipe(<ore:ingotSteel>.firstItem);

This function removes all recipes currently defined for the Steelworks:

java
Copy
mods.steamagerevolution.Steelworks.removeAll();

This function is used to add new recipes for the Steelworks:

java
Copy
mods.steamagerevolution.Steelworks.addRecipe(ILiquidStack input, IIngredient input2, IItemStack output, int craftTime, int steamCost);

// Examples
mods.steamagerevolution.Steelworks.addRecipe(<liquid:iron>, <ore:coal>, <ore:ingotSteel>.firstItem, 200, 200);