ME Circuit Etching (LazyAE2)
Description
Converts up to 3 input itemstacks from specific slots into an output itemstack.
Identifier
Refer to this via any of the following:
mods.threng.etcher/* Used as page default */
mods.threng.Etcher
mods.lazyae2.etcher
mods.lazyae2.EtcherAdding Recipes
Add the given recipe to the recipe list:
groovymods.threng.etcher.add(EtchRecipe)
Recipe Builder
Just like other recipe types, the ME Circuit Etching 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.threng.etcher.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>)IIngredient. Sets the top slot of the recipe. (DefaultIIngredient.EMPTY).groovytop(IIngredient)IIngredient. Sets the bottom slot of the recipe. (DefaultIIngredient.EMPTY).groovybottom(IIngredient)
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. (returnsnullorio.github.phantamanta44.threng.recipe.EtchRecipe).groovyregister()
Example
mods.threng.etcher.recipeBuilder()
.input(ore('blockGlass'))
.top(item('minecraft:diamond'))
.bottom(item('minecraft:clay'))
.output(item('minecraft:diamond') * 5)
.register()
mods.threng.etcher.recipeBuilder()
.input(item('minecraft:gold_ingot'))
.output(item('minecraft:diamond'))
.register()Removing Recipes
Removes the given recipe from the recipe list:
groovymods.threng.etcher.remove(EtchRecipe)Removes all recipes that match the given input:
groovymods.threng.etcher.removeByInput(IIngredient)Removes all recipes that match the given output:
groovymods.threng.etcher.removeByOutput(IIngredient)Removes all registered recipes:
groovymods.threng.etcher.removeAll()
Example
mods.threng.etcher.removeByInput(item('minecraft:diamond'))
mods.threng.etcher.removeByOutput(item('appliedenergistics2:material:22'))
mods.threng.etcher.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.threng.etcher.streamRecipes()
