Infusion
Link to infusion
This package allows you to add and remove recipes to/from the Infusion.
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.Infusion;
Adding recipes
Link to adding-recipes
ZenScript Copy//mods.thaumcraft.Infusion.registerRecipe(String name, String research, IItemStack output, int instability, CTAspectStack[] aspects, IIngredient centralItem, IIngredient[] recipe);
mods.thaumcraft.Infusion.registerRecipe("testName", "", <minecraft:diamond>, 20, [<aspect:aer>, <aspect:ignis>], <minecraft:grass>, [<minecraft:stick>, <minecraft:dirt>]);
Removing recipes
Link to removing-recipes
ZenScript Copy//mods.thaumcraft.Infusion.removeRecipe(String name);
mods.thaumcraft.Infusion.removeRecipe("recipeName");
//mods.thaumcraft.Infusion.removeRecipe(IItemStack output);
mods.thaumcraft.Infusion.removeRecipe(<thaumcraft:mirror_essentia>);