Crucible
Link to crucible
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 Copyimport mods.thaumcraft.Crucible;
Adding recipes
Link to adding-recipes
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>);