Импорт класса
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
Утилиты
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>));
Параметр | Тип | 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>);
Параметр | Тип | Description |
---|
stack | IItemStack | The stack to check |
Return Type: boolean
MCIngredientTransformed.matches(stack as IItemStack, ignoreDamage as boolean) as boolean
Параметр | Тип | Description |
---|
stack | IItemStack | No Description Provided |
Игнорирование | 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>
Параметр | Тип | 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
Параметр | Тип | Description |
---|
regex | string | No Description Provided |
Операторы
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
Свойства