This package allows you to add and remove recipes to/from the Crucible.

Importing the package

Link to importing-the-package

You can import the package and its methods to facilitate the retrival of the methods.

ZenScript
Copy
import mods.thaumcraft.Crucible;
ZenScript
Copy
//mods.thaumcraft.Crucible.registerRecipe(String name, String researchKey, IItemStack output, IIngredient input, CTAspectStack[] aspects);
mods.thaumcraft.Crucible.registerRecipe("crucibleTest", "", <minecraft:diamond>, <minecraft:stick>, [<aspect:aer>]);

Removing recipes

Link to removing-recipes

ZenScript
Copy
//mods.thaumcraft.Crucible.removeRecipe(String name);
mods.thaumcraft.Crucible.removeRecipe("recipeName");


//mods.thaumcraft.Crucible.removeRecipe(IItemStack output);
mods.thaumcraft.Crucible.removeRecipe(<minecraft:leather>);