Enchanter (Extra Utilities 2)
Description
Converts two input itemstacks into an output itemstack, consuming energy and require nearby enchantment power providers.
Identifier
Refer to this via any of the following:
mods.extrautils2.enchanter/* Used as page default */
mods.extrautils2.Enchanter
mods.extrautilities2.enchanter
mods.extrautilities2.Enchanter
Adding Recipes
Recipe Builder
Just like other recipe types, the Enchanter also uses a recipe builder.
Don't know what a builder is? Check the builder info page out.
mods.extrautils2.enchanter.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 greater than or equal to 1 and less than or equal to 2.groovyoutput(ItemStack) output(ItemStack...) output(Collection<ItemStack>)
int
. Sets the time in ticks the recipe takes. Requires greater than 0. (Default0
).groovytime(int)
int
. Sets the energy cost of the recipe. Requires greater than or equal to 0. (Default0
).groovyenergy(int)
First validates the builder, returning
null
and outputting errors to the log file if the validation failed, then registers the builder and returns the registered object. (returnsnull
orcom.rwtema.extrautils2.api.machine.IMachineRecipe
).groovyregister()
Example
mods.extrautils2.enchanter.recipeBuilder()
.input(item('minecraft:gold_ingot'), item('minecraft:diamond'))
.output(item('minecraft:clay'))
.energy(1000)
.time(5)
.register()
Removing Recipes
Removes all recipes that match the given input:
groovymods.extrautils2.enchanter.removeByInput(IIngredient)
Removes all registered recipes:
groovymods.extrautils2.enchanter.removeAll()
Example
mods.extrautils2.enchanter.removeByInput(item('minecraft:bookshelf'))
mods.extrautils2.enchanter.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.extrautils2.enchanter.streamRecipes()