Oven (Bewitchment) 
Description 
Converts an input itemstack into an output itemstack, with the ability to have a chance to produce an optional itemstack, and if producing the optional itemstack will consume a bewitchment:empty_jar. Requires furnace fuel to run and takes 10 seconds per recipe.
Identifier 
Refer to this via any of the following:
mods.bewitchment.oven/* Used as page default */
mods.bewitchment.OvenAdding Recipes 
Adds the recipe:
groovymods.bewitchment.oven.add(OvenRecipe)
Recipe Builder 
Just like other recipe types, the Oven also uses a recipe builder.
Don't know what a builder is? Check the builder info page out.
Recipe Builder
Create the Recipe Builder.
groovymods.bewitchment.oven.recipeBuilder()
ResourceLocation. Sets the Resource Location of the recipe.groovyname(String) name(ResourceLocation)IngredientList<IIngredient>. Sets the item inputs of the recipe. Requires exactly 1.groovyinput(IIngredient) input(IIngredient...) input(Collection<IIngredient>)ItemStackList. Sets the item outputs of the recipe. Requires exactly 1.groovyoutput(ItemStack) output(ItemStack...) output(Collection<ItemStack>)ItemStack. Sets the byproduct itemstack. Requires not null. (DefaultItemStack.EMPTY).groovybyproduct(ItemStack)boolean. Sets if the recipe must consume a jar in order to produce the byproduct. (Defaultfalse).groovyrequiresJar(boolean)float. Sets the chance the byproduct will be created. Requires greater than or equal to 0. (Default0.0f).groovybyproductChance(float)
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. (returnsnullorcom.bewitchment.api.registry.OvenRecipe).groovyregister()
Example
mods.bewitchment.oven.recipeBuilder()
    .input(item('minecraft:clay'))
    .output(item('minecraft:diamond'))
    .requiresJar(false)
    .byproduct(item('minecraft:gold_nugget'))
    .byproductChance(0.2f)
    .register()Removing Recipes 
Removes the recipe with the given Resource Location:
groovymods.bewitchment.oven.remove(ResourceLocation)Removes the recipe with the given String as its Resource Location:
groovymods.bewitchment.oven.remove(String)Removes the recipe:
groovymods.bewitchment.oven.remove(OvenRecipe)Removes all recipes that match the given input:
groovymods.bewitchment.oven.removeByInput(IIngredient)Removes all recipes that match the given output:
groovymods.bewitchment.oven.removeByOutput(IIngredient)Removes all registered recipes:
groovymods.bewitchment.oven.removeAll()
Example
mods.bewitchment.oven.removeByInput(item('minecraft:sapling'))
mods.bewitchment.oven.removeByOutput(item('bewitchment:garlic_grilled'))
mods.bewitchment.oven.removeByOutput(item('bewitchment:tallow'))
mods.bewitchment.oven.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:
groovymods.bewitchment.oven.streamRecipes()
