Liste d'ingrédients
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.IngredientList;
Implemented Interfaces
IngredientList implements the following interfaces. That means all methods defined in these interfaces are also available in IngredientList
Constructors
No Description Provided
new IngredientList(ingredients as IIngredient[]) as IngredientList
Parameter | Type | Description |
---|
ingredients | IIngredient[] | No Description Provided |
Casters
Methods
Return Type: void
IngredientList.addShiftTooltip(content as MCTextComponent, showMessage as MCTextComponent) as void
Return Type: void
IngredientList.addTooltip(content as MCTextComponent) as void
Return Type: void
IngredientList.clearTooltip() as void
myIngredientList.clearTooltip();
Does the ingredient contain the given ingredient?
Return Type: boolean
IngredientList.contains(ingredient as IIngredient) as boolean
myIngredientList.contains((<item:minecraft:iron_ingot> | <item:minecraft:gold_ingot>));
Parameter | Type | Description |
---|
ingredient | IIngredient | The ingredient to check |
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
IngredientList.getRemainingItem(stack as IItemStack) as IItemStack
myIngredientList.getRemainingItem(<item:minecraft:iron_ingot>);
Parameter | Type | Description |
---|
stack | IItemStack | The stack to provide for this ingredient. |
Does the given stack match the ingredient?
Return Type: boolean
IngredientList.matches(stack as IItemStack) as boolean
myIngredientList.matches(<item:minecraft:iron_ingot>);
Parameter | Type | Description |
---|
stack | IItemStack | The stack to check |
Return Type: void
IngredientList.modifyTooltip(function as ITooltipFunction) as void
Use this if you already have the condition from another ingredient
Return Type: MCIngredientConditioned<IIngredient>
IngredientList.only(condition as IIngredientCondition<IIngredient>) as MCIngredientConditioned<IIngredient>
Return Type: MCIngredientConditioned<IIngredient>
IngredientList.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
IngredientList.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 myIngredientList
(<item:minecraft:iron_ingot> | <item:minecraft:gold_ingot>) in myIngredientList
myIngredientList | other as IIngredient
Properties
Name | Type | Has Getter | Has Setter |
---|
burnTime | void | false | true |