Pulse Centrifuge (LazyAE2) 
Description 
Converts 1 input itemstack into an output itemstack.
Identifier 
Refer to this via any of the following:
mods.threng.centrifuge/* Used as page default */
mods.threng.Centrifuge
mods.lazyae2.centrifuge
mods.lazyae2.CentrifugeAdding Recipes 
- Add the given recipe to the recipe list: groovy- mods.threng.centrifuge.add(PurifyRecipe)
Recipe Builder 
Just like other recipe types, the Pulse Centrifuge also uses a recipe builder.
Don't know what a builder is? Check the builder info page out.
Recipe Builder
- Create the Recipe Builder. groovy- mods.threng.centrifuge.recipeBuilder()
- IngredientList<IIngredient>. Sets the item inputs of the recipe. Requires exactly 1.groovy- input(IIngredient) input(IIngredient...) input(Collection<IIngredient>)
- ItemStackList. Sets the item outputs of the recipe. Requires exactly 1.groovy- output(ItemStack) output(ItemStack...) output(Collection<ItemStack>)
- First validates the builder, returning - nulland outputting errors to the log file if the validation failed, then registers the builder and returns the registered object. (returns- nullor- io.github.phantamanta44.threng.recipe.PurifyRecipe).groovy- register()
Example
mods.threng.centrifuge.recipeBuilder()
    .input(ore('blockGlass'))
    .output(item('minecraft:diamond'))
    .register()
mods.threng.centrifuge.recipeBuilder()
    .input(item('minecraft:gold_ingot'))
    .output(item('minecraft:diamond'))
    .register()Removing Recipes 
- Removes the given recipe from the recipe list: groovy- mods.threng.centrifuge.remove(PurifyRecipe)
- Removes all recipes that match the given input: groovy- mods.threng.centrifuge.removeByInput(IIngredient)
- Removes all recipes that match the given output: groovy- mods.threng.centrifuge.removeByOutput(IIngredient)
- Removes all registered recipes: groovy- mods.threng.centrifuge.removeAll()
Example
mods.threng.centrifuge.removeByInput(item('appliedenergistics2:material'))
mods.threng.centrifuge.removeByOutput(item('appliedenergistics2:material:4'))
mods.threng.centrifuge.removeAll()Getting the value of recipes 
- Iterates through every entry in the registry, with the ability to call remove on any element to remove it: groovy- mods.threng.centrifuge.streamRecipes()
