Compacting Bin (Pyrotech)
Description
When using a shovel it can convert items.
Identifier
Refer to this via any of the following:
mods.pyrotech.compacting_bin/* Used as page default */
mods.pyrotech.compactingbin
mods.pyrotech.compactingBin
mods.pyrotech.CompactingBin
Adding Recipes
Adds recipes in the format
name
,input
,output
,hits
:groovymods.pyrotech.compacting_bin.add(String, IIngredient, ItemStack, int)
Example
mods.pyrotech.compacting_bin.add('iron_to_clay', ore('ingotIron') * 5, item('minecraft:clay_ball') * 20, 9)
Recipe Builder
Just like other recipe types, the Compacting Bin also uses a recipe builder.
Don't know what a builder is? Check the builder info page out.
mods.pyrotech.compacting_bin.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>)
int
. Sets how often the item needs to be hit. Requires greater than or equal to 1. (Default0
).groovytoolUses(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.codetaylor.mc.pyrotech.modules.tech.basic.recipe.CompactingBinRecipe
).groovyregister()
Example
mods.pyrotech.compacting_bin.recipeBuilder()
.input(item('minecraft:diamond'))
.output(item('minecraft:emerald'))
.toolUses(5)
.name('diamond_to_emerald_compacting_bin')
.register()
Removing Recipes
Removes all recipes that match the given input:
groovymods.pyrotech.compacting_bin.removeByInput(ItemStack)
Removes all recipes that match the given output:
groovymods.pyrotech.compacting_bin.removeByOutput(IIngredient)
Removes all registered recipes:
groovymods.pyrotech.compacting_bin.removeAll()
Example
mods.pyrotech.compacting_bin.removeByInput(item('minecraft:snowball'))
mods.pyrotech.compacting_bin.removeByOutput(item('minecraft:bone_block'))
mods.pyrotech.compacting_bin.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.pyrotech.compacting_bin.streamRecipes()