Small Plate Presser (Advanced Rocketry)
Description
Converts a block right below it into output items when powered by redstone.
Identifier
Refer to this via any of the following:
mods.advancedrocketry.small_plate_presser/* Used as page default */
mods.advancedrocketry.smallplatepresser
mods.advancedrocketry.smallPlatePresser
mods.advancedrocketry.SmallPlatePresserAdding Recipes
Add the given recipe to the recipe list:
groovymods.advancedrocketry.small_plate_presser.add(R)
Recipe Builder
Just like other recipe types, the Small Plate Presser 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.advancedrocketry.small_plate_presser.recipeBuilder()
IngredientList<IIngredient>. Sets the item inputs of the recipe. Requires exactly 1 andinputto be a block.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. (returnsnullorzmaster587.libVulpes.interfaces.IRecipe).groovyregister()
Example
mods.advancedrocketry.small_plate_presser.recipeBuilder()
.input(item('minecraft:cobblestone'))
.output(item('minecraft:diamond'))
.register()Removing Recipes
Removes the given recipe from the recipe list:
groovymods.advancedrocketry.small_plate_presser.remove(R)Removes all recipes that match the given input:
groovymods.advancedrocketry.small_plate_presser.removeByInput(IIngredient)Removes all recipes that match the given output:
groovymods.advancedrocketry.small_plate_presser.removeByOutput(IIngredient)Removes all registered recipes:
groovymods.advancedrocketry.small_plate_presser.removeAll()
Example
mods.advancedrocketry.small_plate_presser.removeByInput(item('minecraft:iron_block'))
mods.advancedrocketry.small_plate_presser.removeByOutput(item('libvulpes:productplate', 2))
mods.advancedrocketry.small_plate_presser.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.advancedrocketry.small_plate_presser.streamRecipes()
