-
Notifications
You must be signed in to change notification settings - Fork 0
Metal Former
Converts an item into another item, according to the mode of the machine.
Refer to this via any of the following:
mods.academy.metal_former/* Used as page default */ // [!code focus]
mods.academy.metalformer
mods.academy.metalFormer
mods.academy.MetalFormer
-
Add the given recipe to the recipe list:
mods.academy.metal_former.add(MetalFormerRecipes.RecipeObject)
-
Adds etching recipes in the format
input
,output
:mods.academy.metal_former.addEtchRecipe(IIngredient, ItemStack)
-
Adds incising recipes in the format
input
,output
:mods.academy.metal_former.addInciseRecipe(IIngredient, ItemStack)
-
Adds plating recipes in the format
input
,output
:mods.academy.metal_former.addPlateRecipe(IIngredient, ItemStack)
-
Adds refining recipes in the format
input
,output
:mods.academy.metal_former.addRefineRecipe(IIngredient, ItemStack)
-
Removes the given recipe from the recipe list:
mods.academy.metal_former.remove(MetalFormerRecipes.RecipeObject)
-
Removes all etching entry of metal former:
mods.academy.metal_former.clearEtch()
-
Removes all etching entry of metal former:
mods.academy.metal_former.clearIncise()
-
Removes all etching entry of metal former:
mods.academy.metal_former.clearPlate()
-
Removes all entry of metal former:
mods.academy.metal_former.clearRecipe()
-
Removes all etching entry of metal former:
mods.academy.metal_former.clearRefine()
-
Removes an entry matching the given
ItemStack
from etching recipes:mods.academy.metal_former.removeEtchbyInput(ItemStack)
-
Removes an entry matching the given
ItemStack
from incise recipes:mods.academy.metal_former.removeIncisebyInput(ItemStack)
-
Removes an entry matching the given
ItemStack
from plate recipes:mods.academy.metal_former.removePlatebyInput(ItemStack)
-
Removes an entry matching the given
ItemStack
from refine recipes:mods.academy.metal_former.removeRefinebyInput(ItemStack)
-
Removes all registered recipes:
mods.academy.metal_former.removeAll()
mods.academy.metal_former.clearEtch()
mods.academy.metal_former.clearIncise()
mods.academy.metal_former.clearPlate()
mods.academy.metal_former.clearRecipe()
mods.academy.metal_former.clearRefine()
mods.academy.metal_former.removeAll()
-
Iterates through every entry in the registry, with the ability to call remove on any element to remove it:
mods.academy.metal_former.streamRecipes()