IItemStack
Link to iitemstack
This represents an item. It can be retrieved using an Item BEP. Is an crafttweaker.api.item.IIngredient
This class was added by a mod with mod-id crafttweaker
. So you need to have this mod installed if you want to use this feature.
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.
ZenScript Copycrafttweaker.api.item.IItemStack
Implemented Interfaces
Link to implemented-interfaces
IItemStack implements the following interfaces. That means any method available to them can also be used on this class.
Methods
Link to methods
clearCustomName
Link to clearcustomname
Clears any custom name set for this ItemStack
ZenScript Copy<item:minecraft:dirt>.clearCustomName();
getRemainingItem
Link to 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 CrT's net.minecraft.item.crafting.ICraftingRecipe
Returns crafttweaker.api.item.IItemStack
ZenScript Copy<item:minecraft:dirt>.getRemainingItem(stack as crafttweaker.api.item.IItemStack);
<item:minecraft:dirt>.getRemainingItem(<item:minecraft:iron_ingot>);
Parameter | Type | Description |
---|---|---|
Parameter stack | Type crafttweaker.api.item.IItemStack | Description The stack to provide for this ingredient. |
matches
Link to matches
Does the given stack match the ingredient?
Returns boolean
ZenScript Copy<item:minecraft:dirt>.matches(stack as crafttweaker.api.item.IItemStack);
<item:minecraft:dirt>.matches(<item:minecraft:iron_ingot>);
Parameter | Type | Description |
---|---|---|
Parameter stack | Type crafttweaker.api.item.IItemStack | Description The stack to check |
setDisplayName
Link to setdisplayname
Sets the display name of the ItemStack
Returns crafttweaker.api.item.IItemStack
ZenScript Copy<item:minecraft:dirt>.setDisplayName(name as String);
<item:minecraft:dirt>.setDisplayName("totally not dirt");
Parameter | Type | Description |
---|---|---|
Parameter name | Type String | Description New name of the stack. |
withDamage
Link to withdamage
Sets the damage of the ItemStack
Returns crafttweaker.api.item.IItemStack
ZenScript Copy<item:minecraft:dirt>.withDamage(damage as int);
<item:minecraft:dirt>.withDamage(10);
Parameter | Type | Description |
---|---|---|
Parameter damage | Type int | Description the new damage value |
withTag
Link to withtag
Sets the tag for the ItemStack.
Returns crafttweaker.api.item.IItemStack
ZenScript Copy<item:minecraft:dirt>.withTag(tag as crafttweaker.api.data.IData);
<item:minecraft:dirt>.withTag({Display: {lore: ["Hello"]}});
Parameter | Type | Description |
---|---|---|
Parameter tag | Type crafttweaker.api.data.IData | Description The tag to set. |
Properties
Link to properties
Nombre | Type | Has Getter | Has Setter |
---|---|---|---|
Nombre amount | Type int | Has Getter true | Has Setter false |
Nombre burnTime | Type int | Has Getter true | Has Setter true |
Nombre commandString | Type String | Has Getter true | Has Setter false |
Nombre damageable - es el objeto dañable | Type boolean | Has Getter true | Has Setter false |
Nombre damaged | Type boolean | Has Getter true | Has Setter false |
Nombre displayName | Type String | Has Getter true | Has Setter false |
Nombre empty | Type boolean | Has Getter true | Has Setter false |
Nombre food | Type crafttweaker.api.food.MCFood | Has Getter true | Has Setter true |
Nombre getOrCreate | Type crafttweaker.api.data.IData | Has Getter true | Has Setter false |
Nombre getRepairCost | Type int | Has Getter true | Has Setter false |
Nombre hasDisplayName | Type boolean | Has Getter true | Has Setter false |
Nombre hasEffect | Type boolean | Has Getter true | Has Setter false |
Nombre hasTag | Type boolean | Has Getter true | Has Setter false |
Nombre isCrossbow | Type boolean | Has Getter true | Has Setter false |
Nombre isEnchantable | Type boolean | Has Getter true | Has Setter false |
Nombre isEnchanted | Type boolean | Has Getter true | Has Setter false |
Nombre items | Type crafttweaker.api.item.IItemStack[] | Has Getter true | Has Setter false |
Nombre maxDamage | Type int | Has Getter true | Has Setter false |
Nombre maxStackSize | Type int | Has Getter true | Has Setter false |
Nombre registryName | Type String | Has Getter true | Has Setter false |
Nombre stackable | Type boolean | Has Getter true | Has Setter false |
Nombre tag | Type crafttweaker.api.data.IData | Has Getter true | Has Setter false |
Nombre translationKey | Type String | Has Getter true | Has Setter false |
Nombre useDuration | Type int | Has Getter true | Has Setter false |
Operadores
Link to operadores
MUL
Link to mul
Sets the amount of the ItemStack
ZenScript Copy<item:minecraft:dirt> * amount as int
<item:minecraft:dirt> * 3
Parameter | Type | Description |
---|---|---|
Parameter amount | Type int | Description new amount |
Casters
Link to casters
Result type | Is Implicit |
---|---|
Result type crafttweaker.api.data.IData | Is Implicit true |
Result type crafttweaker.api.data.MapData | Is Implicit true |
Result type crafttweaker.api.item.IItemStack | Is Implicit false |