Infusion
This package allows you to add and remove recipes to/from the Infusion.
Importing the package
You can import the package and its methods to facilitate the retrival of the methods.
import mods.thaumcraft.Infusion;
Adding recipes
//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
//mods.thaumcraft.Infusion.removeRecipe(String name);mods.thaumcraft.Infusion.removeRecipe("recipeName");
//mods.thaumcraft.Infusion.removeRecipe(IItemStack output);mods.thaumcraft.Infusion.removeRecipe(<thaumcraft:mirror_essentia>);