Heat Coil (Embers Unofficial Extended Life)
Description
Convert an input item into an output item in a Heat Coil.
Identifier
Refer to this via any of the following:
mods.embers.heat_coil/* Used as page default */
mods.embers.heatcoil
mods.embers.heatCoil
mods.embers.HeatCoilAdding Recipes
Recipe Builder
Just like other recipe types, the Heat Coil 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.embers.heat_coil.recipeBuilder()
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>)
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. (returnsnullorteamroots.embers.recipe.HeatCoilRecipe).groovyregister()
Example
mods.embers.heat_coil.recipeBuilder()
.input(item('minecraft:clay'))
.output(item('minecraft:gravel'))
.register()
mods.embers.heat_coil.recipeBuilder()
.input(item('minecraft:gravel'))
.output(item('minecraft:grass'))
.register()Removing Recipes
Removes all recipes that match the given input:
groovymods.embers.heat_coil.removeByInput(IIngredient)Removes all recipes that match the given output:
groovymods.embers.heat_coil.removeByOutput(IIngredient)Removes all registered recipes:
groovymods.embers.heat_coil.removeAll()
Example
mods.embers.heat_coil.removeByInput(item('minecraft:iron_ore'))
mods.embers.heat_coil.removeByOutput(item('minecraft:iron_ingot'))
mods.embers.heat_coil.removeByOutput(item('minecraft:glass'))
mods.embers.heat_coil.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.embers.heat_coil.streamRecipes()
