Interface IBrewingRecipe
- All Known Implementing Classes:
- BrewingRecipe,- VanillaBrewingRecipe
public interface IBrewingRecipe
- 
Method SummaryModifier and TypeMethodDescriptionReturns the output when the passed input is brewed with the passed ingredient.booleanisIngredient(ItemStack ingredient)Returns true if the passed ItemStack is an ingredient for this recipe.booleanReturns true is the passed ItemStack is an input for this recipe.
- 
Method Details- 
isInputReturns true is the passed ItemStack is an input for this recipe. "Input" being the item that goes in one of the three bottom slots of the brewing stand (e.g: water bottle)
- 
isIngredientReturns true if the passed ItemStack is an ingredient for this recipe. "Ingredient" being the item that goes in the top slot of the brewing stand (e.g: nether wart)
- 
getOutputReturns the output when the passed input is brewed with the passed ingredient. Empty if invalid input or ingredient.
 
-