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.MCIngredientTransformed;
Implemented Interfaces
MCIngredientTransformed implements the following interfaces. That means all methods defined in these interfaces are also available in MCIngredientTransformed
Casters
Methods
Return Type: void
MCIngredientTransformed.addShiftTooltip(content as MCTextComponent, showMessage as MCTextComponent) as void
Return Type: void
MCIngredientTransformed.addTooltip(content as MCTextComponent) as void
Return Type: void
MCIngredientTransformed.clearTooltip() as void
myMCIngredientTransformed.clearTooltip();
Does the ingredient contain the given ingredient?
Return Type: boolean
MCIngredientTransformed.contains(ingredient as IIngredient) as boolean
myMCIngredientTransformed.contains((<item:minecraft:iron_ingot> | <item:minecraft:gold_ingot>));
Parameter | Type | Description |
---|
ingredient | IIngredient | The ingredient to check |
Does the given stack match the ingredient?
Return Type: boolean
MCIngredientTransformed.matches(stack as IItemStack) as boolean
myMCIngredientTransformed.matches(<item:minecraft:iron_ingot>);
Parameter | Type | Description |
---|
stack | IItemStack | The stack to check |
Return Type: boolean
MCIngredientTransformed.matches(stack as IItemStack, ignoreDamage as boolean) as boolean
Parameter | Type | Description |
---|
stack | IItemStack | No Description Provided |
ignoreDamage | boolean | No Description Provided |
Return Type: void
MCIngredientTransformed.modifyTooltip(function as ITooltipFunction) as void
Use this if you already have the condition from another ingredient
Return Type: MCIngredientConditioned<IIngredient>
MCIngredientTransformed.only(condition as IIngredientCondition<IIngredient>) as MCIngredientConditioned<IIngredient>
Return Type: MCIngredientConditioned<IIngredient>
MCIngredientTransformed.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 | |
Return Type: void
MCIngredientTransformed.removeTooltip(regex as string) as void
Parameter | Type | Description |
---|
regex | string | No Description Provided |
Operators
Does the ingredient contain the given ingredient?
ingredient as IIngredient in myMCIngredientTransformed
(<item:minecraft:iron_ingot> | <item:minecraft:gold_ingot>) in myMCIngredientTransformed
myMCIngredientTransformed | other as IIngredient
Properties