WrappingIIngredient
Link to wrappingiingredient
An IIngredient that wraps a vanilla Ingredient.
Importing the class
Link to 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.
ZenScript Copyimport crafttweaker.api.ingredient.type.WrappingIIngredient;
Implemented Interfaces
Link to implemented-interfaces
WrappingIIngredient implements the following interfaces. That means all methods defined in these interfaces are also available in WrappingIIngredient
Casters
Link to casters
Result Type | Is Implicit |
---|---|
Result Type IData | Is Implicit true |
Result Type IIngredientWithAmount | Is Implicit true |
Result Type MapData | Is Implicit true |
Methods
Link to methods
Name: addGlobalAttributeModifier
This method no longer works and is deprecated, it is left in so it doesn't cause breaking changes.
Please use Item Components instead.
ZenScript CopyWrappingIIngredient.addGlobalAttributeModifier(attribute as Attribute, id as ResourceLocation, value as double, operation as AttributeOperation, slotTypes as EquipmentSlot[])
Parameter | Type |
---|---|
Parameter attribute | Type Attribute |
Parameter id | Type ResourceLocation |
Parameter value | Type double |
Parameter operation | Type AttributeOperation |
Parameter slotTypes | Type EquipmentSlot[] |
Name: addTooltip
ZenScript CopyWrappingIIngredient.addTooltip(content as Component)
Parameter | Type |
---|---|
Parameter content | Type Component |
Name: anyDamage
Return Type: IIngredient
ZenScript Copy// WrappingIIngredient.anyDamage() as IIngredient
<tag:item:minecraft:wool>.asIIngredient();.anyDamage();
Name: asIIngredientWithAmount
Used implicitly when a machine can accept more than one item but you only provide one.
Return Type: IIngredientWithAmount
ZenScript Copy// WrappingIIngredient.asIIngredientWithAmount() as IIngredientWithAmount
<tag:item:minecraft:wool>.asIIngredient();.asIIngredientWithAmount();
Name: clearTooltip
ZenScript CopyWrappingIIngredient.clearTooltip(leaveName as boolean)
Parameter | Type | Optional | Default Value |
---|---|---|---|
Parameter leaveName | Type boolean | Optional true | Default Value false |
Name: condition
Use this if you already have the condition from another ingredient
Return Type: IIngredient
ZenScript CopyWrappingIIngredient.condition(condition as IIngredientCondition) as IIngredient
Parameter | Type |
---|---|
Parameter condition | Type IIngredientCondition |
Name: contains
Does the ingredient contain the given ingredient?
Return Type: boolean
ZenScript Copy// WrappingIIngredient.contains(ingredient as IIngredient) as boolean
<tag:item:minecraft:wool>.asIIngredient();.contains((<item:minecraft:iron_ingot> | <item:minecraft:gold_ingot>));
Parameter | Type | Description |
---|---|---|
Parameter ingredient | Type IIngredient | Description The ingredient to check |
Name: 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
ZenScript Copy// WrappingIIngredient.getRemainingItem(stack as IItemStack) as IItemStack
<tag:item:minecraft:wool>.asIIngredient();.getRemainingItem(<item:minecraft:iron_ingot>);
Parameter | Type | Description |
---|---|---|
Parameter stack | Type IItemStack | Description The stack to provide for this ingredient. |
Name: modifyShiftTooltip
ZenScript CopyWrappingIIngredient.modifyShiftTooltip(shiftedFunction as ITooltipFunction, unshiftedFunction as ITooltipFunction)
Parameter | Type | Optional |
---|---|---|
Parameter shiftedFunction | Type ITooltipFunction | Optional false |
Parameter unshiftedFunction | Type ITooltipFunction | Optional true |
Name: modifyTooltip
ZenScript CopyWrappingIIngredient.modifyTooltip(function as ITooltipFunction)
Parameter | Type |
---|---|
Parameter function | Type ITooltipFunction |
Name: mul
Use this in contexts where machines accept more than one item to state that fact.
Return Type: IIngredientWithAmount
ZenScript CopyWrappingIIngredient.mul(amount as int) as IIngredientWithAmount
Parameter | Type |
---|---|
Parameter amount | Type int |
Name: onlyDamaged
Return Type: IIngredient
ZenScript Copy// WrappingIIngredient.onlyDamaged() as IIngredient
<tag:item:minecraft:wool>.asIIngredient();.onlyDamaged();
Name: onlyDamagedAtLeast
Return Type: IIngredient
ZenScript CopyWrappingIIngredient.onlyDamagedAtLeast(minDamage as int) as IIngredient
Parameter | Type |
---|---|
Parameter minDamage | Type int |
Name: onlyDamagedAtMost
Return Type: IIngredient
ZenScript CopyWrappingIIngredient.onlyDamagedAtMost(maxDamage as int) as IIngredient
Parameter | Type |
---|---|
Parameter maxDamage | Type int |
Name: onlyIf
Return Type: IIngredient
ZenScript CopyWrappingIIngredient.onlyIf(uid as string, function as Predicate<IItemStack>) as IIngredient
Parameter | Type | Optional |
---|---|---|
Parameter uid | Type string | Optional false |
Parameter function | Type Predicate<IItemStack> | Optional true |
Name: removeGlobalAttribute
This method no longer works and is deprecated, it is left in so it doesn't cause breaking changes.
Please use Item Components instead.
ZenScript CopyWrappingIIngredient.removeGlobalAttribute(attribute as Attribute, slotTypes as EquipmentSlot[])
Parameter | Type |
---|---|
Parameter attribute | Type Attribute |
Parameter slotTypes | Type EquipmentSlot[] |
Name: removeGlobalAttributeModifier
This method no longer works and is deprecated, it is left in so it doesn't cause breaking changes.
Please use Item Components instead.
ZenScript CopyWrappingIIngredient.removeGlobalAttributeModifier(uuid as stdlib.UUID, slotTypes as EquipmentSlot[])
Parameter | Type |
---|---|
Parameter uuid | Type stdlib.UUID |
Parameter slotTypes | Type EquipmentSlot[] |
Name: removeGlobalAttributeModifier
This method no longer works and is deprecated, it is left in so it doesn't cause breaking changes.
Please use Item Components instead.
ZenScript CopyWrappingIIngredient.removeGlobalAttributeModifier(uuid as string, slotTypes as EquipmentSlot[])
Parameter | Type |
---|---|
Parameter uuid | Type string |
Parameter slotTypes | Type EquipmentSlot[] |
Name: removeTooltip
ZenScript CopyWrappingIIngredient.removeTooltip(regex as string)
Parameter | Type |
---|---|
Parameter regex | Type string |
Name: reuse
Return Type: IIngredient
ZenScript Copy// WrappingIIngredient.reuse() as IIngredient
<tag:item:minecraft:wool>.asIIngredient();.reuse();
Name: setBurnTime
Sets the burn time of this ingredient, for use in the furnace and other machines
ZenScript Copy// WrappingIIngredient.setBurnTime(time as int)
<tag:item:minecraft:wool>.asIIngredient();.setBurnTime(500);
Parameter | Type | Description |
---|---|---|
Parameter time | Type int | Description the new burn time |
Name: transformCustom
Return Type: IIngredient
ZenScript CopyWrappingIIngredient.transformCustom(uid as string, function as Function<IItemStack,IItemStack>) as IIngredient
Parameter | Type | Optional |
---|---|---|
Parameter uid | Type string | Optional false |
Parameter function | Type Function<IItemStack,IItemStack> | Optional true |
Name: transformDamage
Return Type: IIngredient
ZenScript CopyWrappingIIngredient.transformDamage(amount as int) as IIngredient
Parameter | Type | Optional | Default Value |
---|---|---|---|
Parameter amount | Type int | Optional true | Default Value 1 |
Name: transformReplace
Return Type: IIngredient
ZenScript CopyWrappingIIngredient.transformReplace(replaceWith as IItemStack) as IIngredient
Parameter | Type |
---|---|
Parameter replaceWith | Type IItemStack |
Operators
Link to operators
Name: CONTAINS
Does the ingredient contain the given ingredient?
ZenScript Copyingredient as IIngredient in myWrappingIIngredient
(<item:minecraft:iron_ingot> | <item:minecraft:gold_ingot>) in <tag:item:minecraft:wool>.asIIngredient();
Name: MUL
Use this in contexts where machines accept more than one item to state that fact.
ZenScript CopymyWrappingIIngredient * amount as int
Name: OR
ZenScript CopymyWrappingIIngredient | other as IIngredient
Properties
Link to properties
Name | Type | Has Getter | Has Setter | Description |
---|---|---|---|---|
Name burnTime | Type void | Has Getter false | Has Setter true | Description Sets the burn time of this ingredient, for use in the furnace and other machines |