MCIngredientConditioned<T : IIngredient>
Importing the class
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
import crafttweaker.api.item.MCIngredientConditioned;
Implemented Interfaces
MCIngredientConditioned implements the following interfaces. That means all methods defined in these interfaces are also available in MCIngredientConditioned
Casters
Methods
anyDamage
Return Type: MCIngredientConditioned<IIngredient>
MCIngredientConditioned.anyDamage() as MCIngredientConditioned<IIngredient>
myMCIngredientConditioned.anyDamage();
getRemainingItem
When this ingredient stack is crafted, what will remain in the grid? Does not check if the stack matches though! Used e.g. in Crafting Table recipes.
Return Type: IItemStack
MCIngredientConditioned.getRemainingItem(stack as IItemStack) as IItemStack
myMCIngredientConditioned.getRemainingItem(<item:minecraft:iron_ingot>);
Parameter | Type | Description |
---|
stack | IItemStack | The stack to provide for this ingredient. |
matches
Does the given stack match the ingredient?
Return Type: boolean
MCIngredientConditioned.matches(stack as IItemStack) as boolean
myMCIngredientConditioned.matches(<item:minecraft:iron_ingot>);
Parameter | Type | Description |
---|
stack | IItemStack | The stack to check |
Return Type: boolean
MCIngredientConditioned.matches(stack as IItemStack, ignoreDamage as boolean) as boolean
Parameter | Type | Description |
---|
stack | IItemStack | No Description Provided |
ignorar daño | boolean | No Description Provided |
onlyDamaged
Return Type: MCIngredientConditioned<IIngredient>
MCIngredientConditioned.onlyDamaged() as MCIngredientConditioned<IIngredient>
myMCIngredientConditioned.onlyDamaged();
onlyIf
Return Type: MCIngredientConditioned<IIngredient>
MCIngredientConditioned.onlyIf(uid as string, function as Predicate<IItemStack>) as MCIngredientConditioned<IIngredient>
Parameter | Type | Description | Optional | DefaultValue |
---|
uid | string | No Description Provided | false | |
function | Predicate<IItemStack> | No Description Provided | true | |
Operators
OR
myMCIngredientConditioned | other as IIngredient
Properties