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
Copy
import crafttweaker.api.item.IItemStack;

Implemented Interfaces

Link to implemented-interfaces

IItemStack implements the following interfaces. That means all methods defined in these interfaces are also available in IItemStack

Static Properties

Link to static-properties

NameTypeHas GetterHas Setter
Name
BASE_ATTACK_DAMAGE_UUID
Type
stdlib.UUID
Has Getter
true
Has Setter
false
Name
BASE_ATTACK_SPEED_UUID
Type
stdlib.UUID
Has Getter
true
Has Setter
false
Name
CRAFTTWEAKER_DATA_KEY
Type
string
Has Getter
true
Has Setter
false
Result TypeIs Implicit
Result Type
IIngredientWithAmount
Is Implicit
true
Result Type
ItemDefinition
Is Implicit
true
Result Type
ItemLike
Is Implicit
true
Result Type
ItemStack
Is Implicit
true
Result Type
MapData
Is Implicit
true
Result Type
Percentaged<IItemStack>
Is Implicit
true

Link to addGlobalAttributeModifier

Name: addGlobalAttributeModifier

Adds an AttributeModifier to this IIngredient.

Attributes added with this method appear on all ItemStacks that match this IIngredient, regardless of how or when the ItemStack was made, if you want to have the attribute on a single specific ItemStack (such as a specific Diamond Sword made in a recipe), then you should use IItemStack#withAttributeModifier

ZenScript
Copy
// IItemStack.addGlobalAttributeModifier(attribute as Attribute, name as string, value as double, operation as AttributeOperation, slotTypes as EquipmentSlot[])

myIItemStack.addGlobalAttributeModifier(<attribute:minecraft:generic.attack_damage>, "Extra Power", 10, AttributeOperation.ADDITION, [<constant:minecraft:equipmentslot:chest>]);
ParameterTypeDescription
Parameter
attribute
Type
Attribute
Description
The Attribute of the modifier.
Parameter
name
Type
string
Description
The name of the modifier.
Parameter
value
Type
double
Description
The value of the modifier.
Parameter
operation
Type
AttributeOperation
Description
The operation of the modifier.
Parameter
slotTypes
Type
EquipmentSlot[]
Description
What slots the modifier is valid for.

Link to addGlobalAttributeModifier

Name: addGlobalAttributeModifier

Adds an AttributeModifier to this IIngredient using a specific UUID.

The UUID can be used to override an existing attribute on an ItemStack with this new modifier. You can use /ct hand attributes to get the UUID of the attributes on an ItemStack.

Attributes added with this method appear on all ItemStacks that match this IIngredient, regardless of how or when the ItemStack was made, if you want to have the attribute on a single specific ItemStack (such as a specific Diamond Sword made in a recipe), then you should use IItemStack#withAttributeModifier

ZenScript
Copy
// IItemStack.addGlobalAttributeModifier(attribute as Attribute, uuid as stdlib.UUID, name as string, value as double, operation as AttributeOperation, slotTypes as EquipmentSlot[])

myIItemStack.addGlobalAttributeModifier(<attribute:minecraft:generic.attack_damage>, IItemStack.BASE_ATTACK_DAMAGE_UUID, "Extra Power", 10, AttributeOperation.ADDITION, [<constant:minecraft:equipmentslot:chest>]);
ParameterTypeDescription
Parameter
attribute
Type
Attribute
Description
The Attribute of the modifier.
Parameter
uuid
Type
stdlib.UUID
Description
The unique identifier of the modifier to replace.
Parameter
name
Type
string
Description
The name of the modifier.
Parameter
value
Type
double
Description
The value of the modifier.
Parameter
operation
Type
AttributeOperation
Description
The operation of the modifier.
Parameter
slotTypes
Type
EquipmentSlot[]
Description
What slots the modifier is valid for.

Link to addGlobalAttributeModifier

Name: addGlobalAttributeModifier

Adds an AttributeModifier to this IIngredient using a specific UUID.

The UUID can be used to override an existing attribute on an ItemStack with this new modifier. You can use /ct hand attributes to get the UUID of the attributes on an ItemStack.

Attributes added with this method appear on all ItemStacks that match this IIngredient, regardless of how or when the ItemStack was made, if you want to have the attribute on a single specific ItemStack (such as a specific Diamond Sword made in a recipe), then you should use IItemStack#withAttributeModifier

ZenScript
Copy
// IItemStack.addGlobalAttributeModifier(attribute as Attribute, uuid as string, name as string, value as double, operation as AttributeOperation, slotTypes as EquipmentSlot[])

myIItemStack.addGlobalAttributeModifier(<attribute:minecraft:generic.attack_damage>, "8c1b5535-9f79-448b-87ae-52d81480aaa3", "Extra Power", 10, AttributeOperation.ADDITION, [<constant:minecraft:equipmentslot:chest>]);
ParameterTypeDescription
Parameter
attribute
Type
Attribute
Description
The Attribute of the modifier.
Parameter
uuid
Type
string
Description
The unique identifier of the modifier to replace.
Parameter
name
Type
string
Description
The name of the modifier.
Parameter
value
Type
double
Description
The value of the modifier.
Parameter
operation
Type
AttributeOperation
Description
The operation of the modifier.
Parameter
slotTypes
Type
EquipmentSlot[]
Description
What slots the modifier is valid for.

Name: addShiftTooltip

ZenScript
Copy
IItemStack.addShiftTooltip(content as Component, showMessage as Component)
ParameterTypeOptional
Parameter
content
Type
Component
Optional
false
Parameter
showMessage
Type
Component
Optional
true

Name: addTooltip

ZenScript
Copy
IItemStack.addTooltip(content as Component)
ParameterType
Parameter
content
Type
Component

Name: anyDamage

Return Type: IIngredient

ZenScript
Copy
// IItemStack.anyDamage() as IIngredient

myIItemStack.anyDamage();

Name: applyComponents

Return Type: IItemStack

ZenScript
Copy
IItemStack.applyComponents(map as DataComponentMap) as IItemStack
ParameterType
Parameter
map
Type
DataComponentMap

Name: applyComponents

Return Type: IItemStack

ZenScript
Copy
IItemStack.applyComponents(patch as DataComponentPatch) as IItemStack
ParameterType
Parameter
patch
Type
DataComponentPatch

Link to applyComponentsAndValidate

Name: applyComponentsAndValidate

Return Type: IItemStack

ZenScript
Copy
IItemStack.applyComponentsAndValidate(patch as DataComponentPatch) as IItemStack
ParameterType
Parameter
patch
Type
DataComponentPatch

Link to asIIngredientWithAmount

Name: asIIngredientWithAmount

Return Type: IIngredientWithAmount

ZenScript
Copy
// IItemStack.asIIngredientWithAmount() as IIngredientWithAmount

myIItemStack.asIIngredientWithAmount();

Name: asImmutable

Return Type: IItemStack

ZenScript
Copy
// IItemStack.asImmutable() as IItemStack

myIItemStack.asImmutable();

Name: asItemLike

Return Type: ItemLike

ZenScript
Copy
// IItemStack.asItemLike() as ItemLike

myIItemStack.asItemLike();

Name: asMutable

Return Type: IItemStack

ZenScript
Copy
// IItemStack.asMutable() as IItemStack

myIItemStack.asMutable();

Name: clearTooltip

ZenScript
Copy
IItemStack.clearTooltip(leaveName as boolean)
ParameterTypeOptionalDefault Value
Parameter
leaveName
Type
boolean
Optional
true
Default Value
false

Name: contains

Does the ingredient contain the given ingredient?

Return Type: boolean

ZenScript
Copy
// IItemStack.contains(ingredient as IIngredient) as boolean

myIItemStack.contains((<item:minecraft:iron_ingot> | <item:minecraft:gold_ingot>));
ParameterTypeDescription
Parameter
ingredient
Type
IIngredient
Description
The ingredient to check

Name: copy

Creates a copy

Return Type: IItemStack

ZenScript
Copy
// IItemStack.copy() as IItemStack

myIItemStack.copy();

Name: getAttributes

Gets the Attributes and the AttributeModifiers on this IItemStack for the given EquipmentSlot

Returns: A Map of Attribute to a List of AttributeModifier for the given EquipmentSlot.
Return Type: stdlib.List<AttributeModifier>[Attribute]

ZenScript
Copy
// IItemStack.getAttributes(slotType as EquipmentSlot) as stdlib.List<AttributeModifier>[Attribute]

myIItemStack.getAttributes(<constant:minecraft:equipmentslot:chest>);
ParameterTypeDescription
Parameter
slotType
Type
EquipmentSlot
Description
The slot to get the Attributes for.

Name: getDefinition

Return Type: ItemDefinition

ZenScript
Copy
// IItemStack.getDefinition() as ItemDefinition

myIItemStack.getDefinition();

Link to getImmutableInternal

Name: getImmutableInternal

Return Type: ItemStack

ZenScript
Copy
// IItemStack.getImmutableInternal() as ItemStack

myIItemStack.getImmutableInternal();

Name: getInternal

Gets the internal ItemStack for this IItemStack.

Returns: internal ItemStack
Return Type: ItemStack

ZenScript
Copy
// IItemStack.getInternal() as ItemStack

myIItemStack.getInternal();

Link to getRemainingItem

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
// IItemStack.getRemainingItem(stack as IItemStack) as IItemStack

myIItemStack.getRemainingItem(<item:minecraft:iron_ingot>);
ParameterTypeDescription
Parameter
stack
Type
IItemStack
Description
The stack to provide for this ingredient.

Name: grow

Grows this IItemStack's stack size by the given amount, or 1 if no amount is given.

Returns: This IItemStack if mutable, a new one with the new amount otherwise.
Return Type: IItemStack

ZenScript
Copy
// IItemStack.grow(amount as int) as IItemStack

myIItemStack.grow(2);
ParameterTypeDescriptionOptionalDefault Value
Parameter
amount
Type
int
Description
The amount to grow by.
Optional
true
Default Value
1

Name: isImmutable

Return Type: boolean

ZenScript
Copy
// IItemStack.isImmutable() as boolean

myIItemStack.isImmutable();

Name: isMutable

Return Type: boolean

ZenScript
Copy
// IItemStack.isMutable() as boolean

myIItemStack.isMutable();

Link to modifyShiftTooltip

Name: modifyShiftTooltip

ZenScript
Copy
IItemStack.modifyShiftTooltip(shiftedFunction as ITooltipFunction, unshiftedFunction as ITooltipFunction)
ParameterTypeOptional
Parameter
shiftedFunction
Type
ITooltipFunction
Optional
false
Parameter
unshiftedFunction
Type
ITooltipFunction
Optional
true

Name: modifyTooltip

ZenScript
Copy
IItemStack.modifyTooltip(function as ITooltipFunction)
ParameterType
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
Copy
IItemStack.mul(amount as int) as IIngredientWithAmount
ParameterType
Parameter
amount
Type
int

Name: onlyDamaged

Return Type: IIngredient

ZenScript
Copy
// IItemStack.onlyDamaged() as IIngredient

myIItemStack.onlyDamaged();

Link to onlyDamagedAtLeast

Name: onlyDamagedAtLeast

Return Type: IIngredient

ZenScript
Copy
IItemStack.onlyDamagedAtLeast(minDamage as int) as IIngredient
ParameterType
Parameter
minDamage
Type
int

Link to onlyDamagedAtMost

Name: onlyDamagedAtMost

Return Type: IIngredient

ZenScript
Copy
IItemStack.onlyDamagedAtMost(maxDamage as int) as IIngredient
ParameterType
Parameter
maxDamage
Type
int

Name: onlyIf

Return Type: IIngredient

ZenScript
Copy
IItemStack.onlyIf(uid as string, function as Predicate<IItemStack>) as IIngredient
ParameterTypeOptional
Parameter
uid
Type
string
Optional
false
Parameter
function
Type
Predicate<IItemStack>
Optional
true

Name: percent

Return Type: Percentaged<IItemStack>

ZenScript
Copy
IItemStack.percent(percentage as double) as Percentaged<IItemStack>
ParameterType
Parameter
percentage
Type
double

Name: remove

Return Type: IItemStack

ZenScript
Copy
IItemStack.remove<T : Object>(type as DataComponentType<T>) as IItemStack
ParameterType
Parameter
type
Type
DataComponentType<T>
Parameter
T
Type
Object

Link to removeGlobalAttribute

Name: removeGlobalAttribute

Removes all AttributeModifiers that use the given Attribute from this IIngredient.

Attributes removed with this method are removed from ItemStacks that match this IIngredient, regardless of how or when the ItemStack was made, if you want to remove the attribute on a single specific ItemStack (such as a specific Diamond Sword made in a recipe), then you should use IItemStack#withoutAttribute.

This method can only remove default Attributes from an ItemStack, it is still possible that an ItemStack can override it.

ZenScript
Copy
// IItemStack.removeGlobalAttribute(attribute as Attribute, slotTypes as EquipmentSlot[])

myIItemStack.removeGlobalAttribute(<attribute:minecraft:generic.attack_damage>, [<constant:minecraft:equipmentslot:chest>]);
ParameterTypeDescription
Parameter
attribute
Type
Attribute
Description
The attribute to remove.
Parameter
slotTypes
Type
EquipmentSlot[]
Description
The slot types to remove it from.

Link to removeGlobalAttributeModifier

Name: removeGlobalAttributeModifier

Removes all AttributeModifiers who's ID is the same as the given uuid from this IIngredient.

ZenScript
Copy
// IItemStack.removeGlobalAttributeModifier(uuid as stdlib.UUID, slotTypes as EquipmentSlot[])

myIItemStack.removeGlobalAttributeModifier(IItemStack.BASE_ATTACK_DAMAGE_UUID, [<constant:minecraft:equipmentslot:chest>]);
ParameterTypeDescription
Parameter
uuid
Type
stdlib.UUID
Description
The unique id of the AttributeModifier to remove.
Parameter
slotTypes
Type
EquipmentSlot[]
Description
The slot types to remove it from.

Link to removeGlobalAttributeModifier

Name: removeGlobalAttributeModifier

Removes all AttributeModifiers who's ID is the same as the given uuid from this IIngredient.

ZenScript
Copy
// IItemStack.removeGlobalAttributeModifier(uuid as string, slotTypes as EquipmentSlot[])

myIItemStack.removeGlobalAttributeModifier("8c1b5535-9f79-448b-87ae-52d81480aaa3", [<constant:minecraft:equipmentslot:chest>]);
ParameterTypeDescription
Parameter
uuid
Type
string
Description
The unique id of the AttributeModifier to remove.
Parameter
slotTypes
Type
EquipmentSlot[]
Description
The slot types to remove it from.

Name: removeTooltip

ZenScript
Copy
IItemStack.removeTooltip(regex as string)
ParameterType
Parameter
regex
Type
string

Name: reuse

Return Type: IIngredient

ZenScript
Copy
// IItemStack.reuse() as IIngredient

myIItemStack.reuse();

Name: setBurnTime

Sets the burn time of this ingredient, for use in the furnace and other machines

ZenScript
Copy
// IItemStack.setBurnTime(time as int)

myIItemStack.setBurnTime(500);
ParameterTypeDescription
Parameter
time
Type
int
Description
the new burn time

Name: shrink

Shrinks this IItemStack's stack size by the given amount, or 1 if no amount is given.

Returns: This IItemStack if mutable, a new one with the new amount otherwise.
Return Type: IItemStack

ZenScript
Copy
// IItemStack.shrink(amount as int) as IItemStack

myIItemStack.shrink(2);
ParameterTypeDescriptionOptionalDefault Value
Parameter
amount
Type
int
Description
The amount to shrink by.
Optional
true
Default Value
1

Name: transformCustom

Return Type: IIngredient

ZenScript
Copy
IItemStack.transformCustom(uid as string, function as Function<IItemStack,IItemStack>) as IIngredient
ParameterTypeOptional
Parameter
uid
Type
string
Optional
false
Parameter
function
Type
Function<IItemStack,IItemStack>
Optional
true

Name: transformDamage

Return Type: IIngredient

ZenScript
Copy
IItemStack.transformDamage(amount as int) as IIngredient
ParameterTypeOptionalDefault Value
Parameter
amount
Type
int
Optional
true
Default Value
1

Link to transformReplace

Name: transformReplace

Return Type: IIngredient

ZenScript
Copy
IItemStack.transformReplace(replaceWith as IItemStack) as IIngredient
ParameterType
Parameter
replaceWith
Type
IItemStack

Name: update

Return Type: IItemStack

ZenScript
Copy
IItemStack.update<T : Object>(type as DataComponentType<T>, defaultValue as T, operator as UnaryOperator<T>) as IItemStack
ParameterType
Parameter
type
Type
DataComponentType<T>
Parameter
defaultValue
Type
T
Parameter
operator
Type
UnaryOperator<T>
Parameter
T
Type
Object

Name: update

Return Type: IItemStack

ZenScript
Copy
IItemStack.update<T : Object, U : Object>(type as DataComponentType<T>, defaultValue as T, data as U, operator as BiFunction<T,U,T>) as IItemStack
ParameterType
Parameter
type
Type
DataComponentType<T>
Parameter
defaultValue
Type
T
Parameter
data
Type
U
Parameter
operator
Type
BiFunction<T,U,T>
Parameter
T
Type
Object
Parameter
U
Type
Object

Name: with

Return Type: IItemStack

ZenScript
Copy
IItemStack.with<T : Object>(type as DataComponentType<T>, value as @org.openzen.zencode.java.ZenCodeType.Nullable T) as IItemStack
ParameterType
Parameter
type
Type
DataComponentType<T>
Parameter
value
Type
@org.openzen.zencode.java.ZenCodeType.Nullable T
Parameter
T
Type
Object

Link to withAttributeModifiers

Name: withAttributeModifiers

Sets the <componenttype:minecraft:attribute_modifiers> of the ComponentAccess to have the given ItemAttributeModifiers

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withAttributeModifiers(modifiers as ItemAttributeModifiers) as T

myIItemStack.withAttributeModifiers(ItemAttributeModifiers.builder().add(<attribute:minecraft:player.block_break_speed>,
                      AttributeModifier.create("test", 2.0, <constant:minecraft:attribute/operation:add_value>, "596e0826-7c66-42c6-b3da-45a6d667ccf7"),
                      <constant:minecraft:equipmentslot/group:mainhand>).build(););
ParameterTypeDescription
Parameter
modifiers
Type
ItemAttributeModifiers
Description
The attributes to give to the item.

Link to withAttributeModifiers

Name: withAttributeModifiers

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withAttributeModifiers(modifier as ItemAttributeModifiersEntry, showInTooltip as boolean) as T
ParameterTypeOptionalDefault Value
Parameter
modifier
Type
ItemAttributeModifiersEntry
Optional
false
Default Value
​
Parameter
showInTooltip
Type
boolean
Optional
true
Default Value
true

Link to withAttributeModifiers

Name: withAttributeModifiers

Return Type: T

ZenScript
Copy
IItemStack.withAttributeModifiers(modifiers as stdlib.List<ItemAttributeModifiersEntry>, showInTooltip as boolean) as T
ParameterTypeOptionalDefault Value
Parameter
modifiers
Type
stdlib.List<ItemAttributeModifiersEntry>
Optional
false
Default Value
​
Parameter
showInTooltip
Type
boolean
Optional
true
Default Value
true

Link to withBannerPatterns

Name: withBannerPatterns

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withBannerPatterns(layers as BannerPatternLayers) as T
ParameterType
Parameter
layers
Type
BannerPatternLayers

Link to withBannerPatterns

Name: withBannerPatterns

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withBannerPatterns(layers as stdlib.List<BannerPatternLayersLayer>) as T
ParameterType
Parameter
layers
Type
stdlib.List<BannerPatternLayersLayer>

Name: withBaseColor

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withBaseColor(color as invalid) as T
ParameterType
Parameter
color
Type
invalid

Name: withBees

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withBees(occupants as stdlib.List<BeehiveBlockEntityOccupant>) as T
ParameterType
Parameter
occupants
Type
stdlib.List<BeehiveBlockEntityOccupant>

Link to withBlockEntityData

Name: withBlockEntityData

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withBlockEntityData(data as CustomData) as T
ParameterType
Parameter
data
Type
CustomData

Link to withBlockEntityData

Name: withBlockEntityData

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withBlockEntityData(data as MapData) as T
ParameterType
Parameter
data
Type
MapData

Name: withBlockState

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withBlockState(properties as BlockItemStateProperties) as T
ParameterType
Parameter
properties
Type
BlockItemStateProperties

Link to withBucketEntityData

Name: withBucketEntityData

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withBucketEntityData(data as CustomData) as T
ParameterType
Parameter
data
Type
CustomData

Link to withBucketEntityData

Name: withBucketEntityData

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withBucketEntityData(data as MapData) as T
ParameterType
Parameter
data
Type
MapData

Link to withBundleContents

Name: withBundleContents

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withBundleContents(contents as BundleContents) as T
ParameterType
Parameter
contents
Type
BundleContents

Link to withBundleContents

Name: withBundleContents

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withBundleContents(contents as stdlib.List<IItemStack>) as T
ParameterType
Parameter
contents
Type
stdlib.List<IItemStack>

Name: withCanBreak

Sets the <componenttype:minecraft:can_break> of the ComponentAccess to have the given invalid

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withCanBreak(predicate as invalid) as T
ParameterTypeDescription
Parameter
predicate
Type
invalid
Description
The adventure mode predicate to use to determine whether the item can be used to break a block.

Name: withCanBreak

Sets the <componenttype:minecraft:can_break> with the given BlockPredicates.

Any predicate that matches will allow the Block to be broken by this ItemStack.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withCanBreak(predicates as stdlib.List<BlockPredicate>, showInTooltip as boolean) as T

myIItemStack.withCanBreak(BlockPredicate.create().of(<block:minecraft:diamond_ore>).build(), true);
ParameterTypeDescriptionOptionalDefault Value
Parameter
predicates
Type
stdlib.List<BlockPredicate>
Description
The collection of predicates to test for
Optional
false
Default Value
​
Parameter
showInTooltip
Type
boolean
Description
Whether to show the ability in the tooltip or not.
Optional
true
Default Value
true

Name: withCanPlaceOn

Sets the <componenttype:minecraft:can_place_on> of the ComponentAccess to have the given invalid

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withCanPlaceOn(predicate as invalid) as T
ParameterTypeDescription
Parameter
predicate
Type
invalid
Description
The adventure mode predicate to use to determine whether the current block can be placed on another block.

Name: withCanPlaceOn

Sets the <componenttype:minecraft:can_place_on> with the given BlockPredicates.

Any predicate that matches will allow the BlockItem within the ItemStack to be placed.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withCanPlaceOn(predicates as stdlib.List<BlockPredicate>, showInTooltip as boolean) as T
ParameterTypeDescriptionOptionalDefault Value
Parameter
predicates
Type
stdlib.List<BlockPredicate>
Description
The collection of predicates to test for
Optional
false
Default Value
​
Parameter
showInTooltip
Type
boolean
Description
Whether to show the restriction in the tooltip or not.
Optional
true
Default Value
true

Link to withChargedProjectiles

Name: withChargedProjectiles

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withChargedProjectiles(chargedProjectiles as ChargedProjectiles) as T
ParameterType
Parameter
chargedProjectiles
Type
ChargedProjectiles

Link to withChargedProjectiles

Name: withChargedProjectiles

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withChargedProjectiles(item as IItemStack) as T
ParameterType
Parameter
item
Type
IItemStack

Link to withChargedProjectiles

Name: withChargedProjectiles

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withChargedProjectiles(items as stdlib.List<IItemStack>) as T
ParameterType
Parameter
items
Type
stdlib.List<IItemStack>

Name: withContainer

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withContainer(contents as ItemContainerContents) as T
ParameterType
Parameter
contents
Type
ItemContainerContents

Name: withContainer

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withContainer(contents as stdlib.List<IItemStack>) as T
ParameterType
Parameter
contents
Type
stdlib.List<IItemStack>

Link to withContainerLoot

Name: withContainerLoot

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withContainerLoot(loot as SeededContainerLoot) as T
ParameterType
Parameter
loot
Type
SeededContainerLoot

Link to withContainerLoot

Name: withContainerLoot

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withContainerLoot(lootTable as ResourceKey<LootTable>, seed as long) as T
ParameterType
Parameter
lootTable
Type
ResourceKey<LootTable>
Parameter
seed
Type
long

Link to withCreativeSlotLock

Name: withCreativeSlotLock

Sets the <componenttype:minecraft:creative_slot_lock> of the ComponentAccess to exist.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withCreativeSlotLock() as T

myIItemStack.withCreativeSlotLock();

Name: withCustomData

Sets the <componenttype:minecraft:custom_data> of the ComponentAccess to have the given CustomData

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withCustomData(customData as CustomData) as T
ParameterType
Parameter
customData
Type
CustomData

Name: withCustomData

Sets the componenttype:minecraft:custom_data of the ComponentAccess to have the given MapData

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withCustomData(customData as MapData) as T

myIItemStack.withCustomData({custom_ammo_thing: 1, owner: "Benji"});
ParameterTypeDescription
Parameter
customData
Type
MapData
Description
The MapData to set the component to.

Link to withCustomModelData

Name: withCustomModelData

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withCustomModelData(data as CustomModelData) as T
ParameterType
Parameter
data
Type
CustomModelData

Link to withCustomModelData

Name: withCustomModelData

Sets the <componenttype:minecraft:custom_data> of the ComponentAccess to have the given CustomData

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withCustomModelData(value as int) as T

myIItemStack.withCustomModelData(2);
ParameterTypeDescription
Parameter
value
Type
int
Description
The value to set the CustomModelData to

Name: withCustomName

Sets the <componenttype:minecraft:custom_name> of the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withCustomName(name as Component) as T

myIItemStack.withCustomName(Component.literal("Fancy Water"));
myIItemStack.withCustomName(Component.translatable("mypack.lore.fancy_water"));
ParameterTypeDescription
Parameter
name
Type
Component
Description
The component to use.

Name: withDamage

Sets the <componenttype:minecraft:damage> of the ComponentAccess to have the given value. Damage is related to durability.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withDamage(damage as int) as T

myIItemStack.withDamage(16);
ParameterTypeDescription
Parameter
damage
Type
int
Description
The new damage of the ComponentAccess.

Link to withDebugStickState

Name: withDebugStickState

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withDebugStickState(state as DebugStickState) as T
ParameterType
Parameter
state
Type
DebugStickState

Name: withDyedColor

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withDyedColor(color as DyedItemColor) as T
ParameterType
Parameter
color
Type
DyedItemColor

Name: withDyedColor

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withDyedColor(rgb as int, showInTooltip as boolean) as T
ParameterTypeOptionalDefault Value
Parameter
rgb
Type
int
Optional
false
Default Value
​
Parameter
showInTooltip
Type
boolean
Optional
true
Default Value
true

Name: withEnchantment

Sets the <componenttype:minecraft:enchantments> of the ComponentAccess to have the given Enchantment and level.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withEnchantment(enchantment as Enchantment, level as int) as T

myIItemStack.withEnchantment(<enchantment:minecraft:efficiency>, 4);
ParameterTypeDescriptionOptionalDefault Value
Parameter
enchantment
Type
Enchantment
Description
The enchantment to add
Optional
false
Default Value
​
Parameter
level
Type
int
Description
The level of the enchantment to set
Optional
true
Default Value
1

Link to withEnchantmentGlintOverride

Name: withEnchantmentGlintOverride

Sets the <componenttype:minecraft:enchantment_glint_override> of the ComponentAccess to have the given value.

If it is false, the item will never render the enchantment glint If it is true, the item will render the enchantment glint always, indenpendently of whether it is enchanted or not.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withEnchantmentGlintOverride(value as boolean) as T

myIItemStack.withEnchantmentGlintOverride(true);
ParameterTypeDescription
Parameter
value
Type
boolean
Description
The value of the override, as described above

Link to withEnchantments

Name: withEnchantments

Sets the <componenttype:minecraft:enchantments> of the ComponentAccess to have the given ItemEnchantments

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withEnchantments(enchantments as ItemEnchantments) as T
ParameterType
Parameter
enchantments
Type
ItemEnchantments

Name: withEntityData

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withEntityData(data as CustomData) as T
ParameterType
Parameter
data
Type
CustomData

Name: withEntityData

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withEntityData(data as MapData) as T
ParameterType
Parameter
data
Type
MapData

Link to withFireResistant

Name: withFireResistant

Sets the <componenttype:minecraft:fire_resistant> of the ComponentAccess to exist.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withFireResistant() as T

myIItemStack.withFireResistant();

Link to withFireworkExplosion

Name: withFireworkExplosion

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withFireworkExplosion(explosion as FireworkExplosion) as T
ParameterType
Parameter
explosion
Type
FireworkExplosion

Name: withFireworks

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withFireworks(fireworks as Fireworks) as T
ParameterType
Parameter
fireworks
Type
Fireworks

Name: withFireworks

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withFireworks(flightDuration as int, explosions as stdlib.List<FireworkExplosion>) as T
ParameterType
Parameter
flightDuration
Type
int
Parameter
explosions
Type
stdlib.List<FireworkExplosion>

Name: withFood

Sets the <componenttype:minecraft:food> of the ComponentAccess to have the given FoodProperties

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withFood(food as FoodProperties) as T
ParameterType
Parameter
food
Type
FoodProperties

Link to withHideAdditionalTooltip

Name: withHideAdditionalTooltip

Sets the <componenttype:minecraft:hide_additional_tooltip> of the ComponentAccess to exist.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withHideAdditionalTooltip() as T

myIItemStack.withHideAdditionalTooltip();

Name: withHideTooltip

Sets the <componenttype:minecraft:hide_tooltip> of the ComponentAccess to exist.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withHideTooltip() as T

myIItemStack.withHideTooltip();

Name: withInstrument

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withInstrument(instrument as Instrument) as T
ParameterType
Parameter
instrument
Type
Instrument

Link to withIntangibleProjectile

Name: withIntangibleProjectile

Sets the <componenttype:minecraft:intangible_projectile> of the ComponentAccess to have exist.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withIntangibleProjectile() as T

myIItemStack.withIntangibleProjectile();

Name: withItemName

Sets the <componenttype:minecraft:item_name> of the ComponentAccess to have the given Component

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withItemName(name as Component) as T

myIItemStack.withItemName(Component.literal("Fancy Water"));
myIItemStack.withItemName(Component.translatable("mypack.lore.fancy_water"));
ParameterType
Parameter
name
Type
Component

Link to withJsonComponent

Name: withJsonComponent

Return Type: IItemStack

ZenScript
Copy
IItemStack.withJsonComponent(type as DataComponentType, value as IData?) as IItemStack
ParameterType
Parameter
type
Type
DataComponentType
Parameter
value
Type
IData?

Link to withJsonComponents

Name: withJsonComponents

Return Type: IItemStack

ZenScript
Copy
IItemStack.withJsonComponents(value as IData) as IItemStack
ParameterType
Parameter
value
Type
IData

Name: withLock

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withLock(code as string) as T
ParameterType
Parameter
code
Type
string

Name: withLock

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withLock(lock as invalid) as T
ParameterType
Parameter
lock
Type
invalid

Link to withLodestoneTracker

Name: withLodestoneTracker

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withLodestoneTracker(tracker as LodestoneTracker) as T
ParameterType
Parameter
tracker
Type
LodestoneTracker

Name: withLore

Sets the <componenttype:minecraft:lore> of the ComponentAccess to have the given stdlib.List<Component>

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withLore(components as stdlib.List<Component>) as T

myIItemStack.withLore([Component.literal("Found in a dark cave"), Component.translatable("Belonged to a Dragon")]);
ParameterTypeDescription
Parameter
components
Type
stdlib.List<Component>
Description
The list of Components to add as lore.

Name: withLore

Sets the <componenttype:minecraft:lore> of the ComponentAccess to have the given ItemLore

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withLore(lore as ItemLore) as T
ParameterType
Parameter
lore
Type
ItemLore

Name: withMapColor

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withMapColor(color as MapItemColor) as T
ParameterType
Parameter
color
Type
MapItemColor

Name: withMapColor

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withMapColor(rgb as int) as T
ParameterType
Parameter
rgb
Type
int

Link to withMapDecorations

Name: withMapDecorations

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withMapDecorations(decorations as MapDecorations) as T
ParameterType
Parameter
decorations
Type
MapDecorations

Link to withMapDecorations

Name: withMapDecorations

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withMapDecorations(decorations as MapDecorationsEntry[string]) as T
ParameterType
Parameter
decorations
Type
MapDecorationsEntry[string]

Name: withMapId

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withMapId(id as int) as T
ParameterType
Parameter
id
Type
int

Name: withMapId

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withMapId(mapId as invalid) as T
ParameterType
Parameter
mapId
Type
invalid

Link to withMapPostProcessing

Name: withMapPostProcessing

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withMapPostProcessing(value as MapPostProcessing) as T
ParameterType
Parameter
value
Type
MapPostProcessing

Name: withMaxDamage

Sets the <componenttype:minecraft:max_damage> of the ComponentAccess to have the given value.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withMaxDamage(maxDamage as int) as T

myIItemStack.withMaxDamage(1024);
ParameterType
Parameter
maxDamage
Type
int

Link to withMaxStackSize

Name: withMaxStackSize

Sets the <componenttype:minecraft:stack_size> of the ComponentAccess to have the given value. Non standard stack sizes may render differently and may not be handled correctly by all mods. Test your changes!

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withMaxStackSize(maxStackSize as int) as T

myIItemStack.withMaxStackSize(16);
ParameterTypeDescription
Parameter
maxStackSize
Type
int
Description
The new maxStackSize of the ComponentAccess.

Link to withNoteBlockSound

Name: withNoteBlockSound

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withNoteBlockSound(sound as ResourceLocation) as T
ParameterType
Parameter
sound
Type
ResourceLocation

Link to withOminousBottleAmplifier

Name: withOminousBottleAmplifier

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withOminousBottleAmplifier(amplifier as int) as T
ParameterType
Parameter
amplifier
Type
int

Link to withPotDecorations

Name: withPotDecorations

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withPotDecorations(decorations as PotDecorations) as T
ParameterType
Parameter
decorations
Type
PotDecorations

Link to withPotDecorations

Name: withPotDecorations

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withPotDecorations(back as ItemDefinition, left as ItemDefinition, right as ItemDefinition, front as ItemDefinition) as T
ParameterType
Parameter
back
Type
ItemDefinition
Parameter
left
Type
ItemDefinition
Parameter
right
Type
ItemDefinition
Parameter
front
Type
ItemDefinition

Link to withPotionContents

Name: withPotionContents

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withPotionContents(contents as invalid) as T
ParameterType
Parameter
contents
Type
invalid

Link to withPotionContents

Name: withPotionContents

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withPotionContents(potion as Potion) as T
ParameterType
Parameter
potion
Type
Potion

Link to withPotionContents

Name: withPotionContents

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withPotionContents(potion as Potion, customEffects as stdlib.List<MobEffectInstance>) as T
ParameterType
Parameter
potion
Type
Potion
Parameter
customEffects
Type
stdlib.List<MobEffectInstance>

Link to withPotionContents

Name: withPotionContents

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withPotionContents(potion as Potion, customColor as int, customEffects as stdlib.List<MobEffectInstance>) as T
ParameterType
Parameter
potion
Type
Potion
Parameter
customColor
Type
int
Parameter
customEffects
Type
stdlib.List<MobEffectInstance>

Name: withProfile

Return Type: T

ZenScript
Copy
IItemStack.withProfile(profile as ResolvableProfile) as T
ParameterType
Parameter
profile
Type
ResolvableProfile

Name: withRarity

Sets the <componenttype:minecraft:rarity> of the ComponentAccess to have the given Rarity

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withRarity(rarity as Rarity) as T

myIItemStack.withRarity(<constant:minecraft:item/rarity:epic>);
ParameterTypeDescription
Parameter
rarity
Type
Rarity
Description
The rarity to set

Name: withRecipes

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withRecipes(recipes as stdlib.List<ResourceLocation>) as T
ParameterType
Parameter
recipes
Type
stdlib.List<ResourceLocation>

Name: withRepairCost

Sets the <componenttype:minecraft:repair_cost> of the ComponentAccess to have the given value.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withRepairCost(cost as int) as T

myIItemStack.withRepairCost(20);
ParameterTypeDescription
Parameter
cost
Type
int
Description
The repair cost

Link to withStoredEnchantments

Name: withStoredEnchantments

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withStoredEnchantments(enchantments as ItemEnchantments) as T
ParameterType
Parameter
enchantments
Type
ItemEnchantments

Link to withSuspiciousStewEffects

Name: withSuspiciousStewEffects

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withSuspiciousStewEffects(effects as stdlib.List<SuspiciousStewEffectsEntry>) as T
ParameterType
Parameter
effects
Type
stdlib.List<SuspiciousStewEffectsEntry>

Link to withSuspiciousStewEffects

Name: withSuspiciousStewEffects

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withSuspiciousStewEffects(suspiciousStewEffects as SuspiciousStewEffects) as T
ParameterType
Parameter
suspiciousStewEffects
Type
SuspiciousStewEffects

Name: withTool

Sets the <componenttype:minecraft:tool> of the ComponentAccess to have the given Tool

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withTool(tool as Tool) as T
ParameterType
Parameter
tool
Type
Tool

Name: withTool

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withTool(rules as stdlib.List<ToolRule>, defaultMiningSpeed as float, damagePerBlock as int) as T
ParameterType
Parameter
rules
Type
stdlib.List<ToolRule>
Parameter
defaultMiningSpeed
Type
float
Parameter
damagePerBlock
Type
int

Name: withTrim

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withTrim(trim as ArmorTrim) as T
ParameterType
Parameter
trim
Type
ArmorTrim

Name: withUnbreakable

Sets the <componenttype:minecraft:unbreakable> of the ComponentAccess. The existance of the component makes the ComponentAccess unbreakable.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withUnbreakable(showInTooltip as boolean) as T
ParameterTypeDescriptionOptionalDefault Value
Parameter
showInTooltip
Type
boolean
Description
Whether to show that the ComponentAccess is unbreakable in a tooltip.
Optional
true
Default Value
true

Name: withUnbreakable

Sets the <componenttype:minecraft:unbreakable> of the ComponentAccess. The existance of the component makes the ComponentAccess unbreakable.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withUnbreakable(unbreakable as Unbreakable) as T
ParameterTypeDescription
Parameter
unbreakable
Type
Unbreakable
Description
The Unbreakable instance with the configured values.

Link to withWritableBookContent

Name: withWritableBookContent

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withWritableBookContent(content as WritableBookContent) as T
ParameterType
Parameter
content
Type
WritableBookContent

Link to withWritableBookContent

Name: withWritableBookContent

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withWritableBookContent(pages as stdlib.List<Filterable<string>>) as T
ParameterType
Parameter
pages
Type
stdlib.List<Filterable<string>>

Link to withWrittenBookContent

Name: withWrittenBookContent

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
IItemStack.withWrittenBookContent(content as WrittenBookContent) as T
ParameterType
Parameter
content
Type
WrittenBookContent

Name: without

Return Type: IItemStack

ZenScript
Copy
IItemStack.without<T : Object>(type as DataComponentType<T>) as IItemStack
ParameterType
Parameter
type
Type
DataComponentType<T>
Parameter
T
Type
Object

Link to withoutAttributeModifiers

Name: withoutAttributeModifiers

Removes the <componenttype:minecraft:attribute_modifiers> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutAttributeModifiers() as T

myIItemStack.withoutAttributeModifiers();

Link to withoutBannerPatterns

Name: withoutBannerPatterns

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutBannerPatterns() as T

myIItemStack.withoutBannerPatterns();

Link to withoutBaseColor

Name: withoutBaseColor

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutBaseColor() as T

myIItemStack.withoutBaseColor();

Name: withoutBees

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutBees() as T

myIItemStack.withoutBees();

Link to withoutBlockEntityData

Name: withoutBlockEntityData

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutBlockEntityData() as T

myIItemStack.withoutBlockEntityData();

Link to withoutBlockState

Name: withoutBlockState

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutBlockState() as T

myIItemStack.withoutBlockState();

Link to withoutBucketEntityData

Name: withoutBucketEntityData

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutBucketEntityData() as T

myIItemStack.withoutBucketEntityData();

Link to withoutBundleContents

Name: withoutBundleContents

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutBundleContents() as T

myIItemStack.withoutBundleContents();

Name: withoutCanBreak

Removes the <componenttype:minecraft:can_break> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutCanBreak() as T

myIItemStack.withoutCanBreak();

Link to withoutCanPlaceOn

Name: withoutCanPlaceOn

Removes the <componenttype:minecraft:can_place_on> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutCanPlaceOn() as T

myIItemStack.withoutCanPlaceOn();

Link to withoutChargedProjectiles

Name: withoutChargedProjectiles

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutChargedProjectiles() as T

myIItemStack.withoutChargedProjectiles();

Link to withoutContainer

Name: withoutContainer

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutContainer() as T

myIItemStack.withoutContainer();

Link to withoutContainerLoot

Name: withoutContainerLoot

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutContainerLoot() as T

myIItemStack.withoutContainerLoot();

Link to withoutCreativeSlotLock

Name: withoutCreativeSlotLock

Removes the <componenttype:minecraft:creative_slot_lock> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutCreativeSlotLock() as T

myIItemStack.withoutCreativeSlotLock();

Link to withoutCustomData

Name: withoutCustomData

Removes the <componenttype:minecraft:custom_data> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutCustomData() as T

myIItemStack.withoutCustomData();

Link to withoutCustomModelData

Name: withoutCustomModelData

Removes the <componenttype:minecraft:custom_model_data> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutCustomModelData() as T

myIItemStack.withoutCustomModelData();

Link to withoutCustomName

Name: withoutCustomName

Removes the <componenttype:minecraft:custom_name> from the ComponentAccess

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutCustomName() as T

myIItemStack.withoutCustomName();

Name: withoutDamage

Removes the <componenttype:minecraft:damage> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutDamage() as T

myIItemStack.withoutDamage();

Link to withoutDebugStickState

Name: withoutDebugStickState

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutDebugStickState() as T

myIItemStack.withoutDebugStickState();

Link to withoutDyedColor

Name: withoutDyedColor

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutDyedColor() as T

myIItemStack.withoutDyedColor();

Link to withoutEnchantment

Name: withoutEnchantment

Removes the Enchantment from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutEnchantment(enchantment as Enchantment) as T

myIItemStack.withoutEnchantment(<enchantment:minecraft:mending>);
ParameterTypeDescription
Parameter
enchantment
Type
Enchantment
Description
The Enchantment to remove

Link to withoutEnchantmentGlintOverride

Name: withoutEnchantmentGlintOverride

Removes the <componenttype:minecraft:enchantment_glint_override> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutEnchantmentGlintOverride() as T

myIItemStack.withoutEnchantmentGlintOverride();

Link to withoutEnchantments

Name: withoutEnchantments

Removes the <componenttype:minecraft:enchantments> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutEnchantments() as T

myIItemStack.withoutEnchantments();

Link to withoutEntityDate

Name: withoutEntityDate

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutEntityDate() as T

myIItemStack.withoutEntityDate();

Link to withoutFireResistant

Name: withoutFireResistant

Removes the <componenttype:minecraft:fire_resistant> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutFireResistant() as T

myIItemStack.withoutFireResistant();

Link to withoutFireworkExplosion

Name: withoutFireworkExplosion

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutFireworkExplosion() as T

myIItemStack.withoutFireworkExplosion();

Link to withoutFireworks

Name: withoutFireworks

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutFireworks() as T

myIItemStack.withoutFireworks();

Name: withoutFood

Removes the <componenttype:minecraft:food> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutFood() as T

myIItemStack.withoutFood();

Link to withoutHideAdditionalTooltip

Name: withoutHideAdditionalTooltip

Removes the <componenttype:minecraft:hide_additional_tooltip> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutHideAdditionalTooltip() as T

myIItemStack.withoutHideAdditionalTooltip();

Link to withoutHideTooltip

Name: withoutHideTooltip

Removes the <componenttype:minecraft:hide_tooltip> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutHideTooltip() as T

myIItemStack.withoutHideTooltip();

Link to withoutInstrument

Name: withoutInstrument

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutInstrument() as T

myIItemStack.withoutInstrument();

Link to withoutIntangibleProjectile

Name: withoutIntangibleProjectile

Removes the <componenttype:minecraft:intangible_projectile> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutIntangibleProjectile() as T

myIItemStack.withoutIntangibleProjectile();

Name: withoutItemName

Removes the <componenttype:minecraft:item_name> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutItemName() as T

myIItemStack.withoutItemName();

Name: withoutLock

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutLock() as T

myIItemStack.withoutLock();

Link to withoutLodestoneTracker

Name: withoutLodestoneTracker

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutLodestoneTracker() as T

myIItemStack.withoutLodestoneTracker();

Name: withoutLore

Removes the <componenttype:minecraft:lore> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutLore() as T

myIItemStack.withoutLore();

Name: withoutMapColor

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutMapColor() as T

myIItemStack.withoutMapColor();

Link to withoutMapDecorations

Name: withoutMapDecorations

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutMapDecorations() as T

myIItemStack.withoutMapDecorations();

Name: withoutMapId

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutMapId() as T

myIItemStack.withoutMapId();

Link to withoutMapPostProcessing

Name: withoutMapPostProcessing

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutMapPostProcessing() as T

myIItemStack.withoutMapPostProcessing();

Link to withoutMaxDamage

Name: withoutMaxDamage

Removes the <componenttype:minecraft:max_damage> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutMaxDamage() as T

myIItemStack.withoutMaxDamage();

Link to withoutMaxStackSize

Name: withoutMaxStackSize

Removes the <componenttype:minecraft:stack_size> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutMaxStackSize() as T

myIItemStack.withoutMaxStackSize();

Link to withoutNoteBlockSound

Name: withoutNoteBlockSound

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutNoteBlockSound() as T

myIItemStack.withoutNoteBlockSound();

Link to withoutOminousBottleAmplifier

Name: withoutOminousBottleAmplifier

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutOminousBottleAmplifier() as T

myIItemStack.withoutOminousBottleAmplifier();

Link to withoutPotDecorations

Name: withoutPotDecorations

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutPotDecorations() as T

myIItemStack.withoutPotDecorations();

Link to withoutPotionContents

Name: withoutPotionContents

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutPotionContents() as T

myIItemStack.withoutPotionContents();

Name: withoutProfile

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutProfile() as T

myIItemStack.withoutProfile();

Name: withoutRarity

Removes the <componenttype:minecraft:rarity> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutRarity() as T

myIItemStack.withoutRarity();

Name: withoutRecipes

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutRecipes() as T

myIItemStack.withoutRecipes();

Link to withoutRepairCost

Name: withoutRepairCost

Removes the <componenttype:minecraft:repair_cost> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutRepairCost() as T

myIItemStack.withoutRepairCost();

Link to withoutStoredEnchantments

Name: withoutStoredEnchantments

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutStoredEnchantments() as T

myIItemStack.withoutStoredEnchantments();

Link to withoutSuspiciousStewEffects

Name: withoutSuspiciousStewEffects

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutSuspiciousStewEffects() as T

myIItemStack.withoutSuspiciousStewEffects();

Name: withoutTool

Removes the <componenttype:minecraft:tool> from the ComponentAccess.

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutTool() as T

myIItemStack.withoutTool();

Name: withoutTrim

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutTrim() as T

myIItemStack.withoutTrim();

Link to withoutUnbreakable

Name: withoutUnbreakable

Removes the <componenttype:minecraft:unbreakable> from the ComponentAccess

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutUnbreakable() as T

myIItemStack.withoutUnbreakable();

Link to withoutWritableBookContent

Name: withoutWritableBookContent

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutWritableBookContent() as T

myIItemStack.withoutWritableBookContent();

Link to withoutWrittenBookContent

Name: withoutWrittenBookContent

Returns: The new instance with the modified data.
Return Type: T

ZenScript
Copy
// IItemStack.withoutWrittenBookContent() as T

myIItemStack.withoutWrittenBookContent();

Name: CONTAINS

Does the ingredient contain the given ingredient?

ZenScript
Copy
ingredient as IIngredient in myIItemStack
(<item:minecraft:iron_ingot> | <item:minecraft:gold_ingot>) in myIItemStack

Name: MOD

ZenScript
Copy
myIItemStack % percentage as double

Name: MUL

Use this in contexts where machines accept more than one item to state that fact.

ZenScript
Copy
myIItemStack * amount as int

Name: OR

ZenScript
Copy
myIItemStack | other as IIngredient
NameTypeHas GetterHas SetterDescription
Name
amount
Type
int
Has Getter
true
Has Setter
false
Description
Gets the amount of Items in the ItemStack
Name
attributeModifiers
Type
ItemAttributeModifiers
Has Getter
true
Has Setter
false
Description
Gets the data in <componenttype:minecraft:attribute_modifiers>
Name
bannerPatterns
Type
BannerPatternLayers
Has Getter
true
Has Setter
false
Description
​
Name
baseColor
Type
invalid
Has Getter
true
Has Setter
false
Description
​
Name
bees
Type
stdlib.List<BeehiveBlockEntityOccupant>
Has Getter
true
Has Setter
false
Description
​
Name
blockEntityData
Type
CustomData
Has Getter
true
Has Setter
false
Description
​
Name
blockState
Type
BlockItemStateProperties
Has Getter
true
Has Setter
false
Description
​
Name
bucketEntityData
Type
CustomData
Has Getter
true
Has Setter
false
Description
​
Name
bundleContents
Type
BundleContents
Has Getter
true
Has Setter
false
Description
​
Name
burnTime
Type
void
Has Getter
true
Has Setter
true
Description
Sets the burn time of this ingredient, for use in the furnace and other machines
Name
canBreak
Type
invalid
Has Getter
true
Has Setter
false
Description
Gets the data in <componenttype:minecraft:can_break>
Name
canPlaceOn
Type
invalid
Has Getter
true
Has Setter
false
Description
Gets the data in <componenttype:minecraft:can_place_on>
Name
chargedProjectiles
Type
ChargedProjectiles
Has Getter
true
Has Setter
false
Description
​
Name
componentsPatch
Type
DataComponentPatch
Has Getter
true
Has Setter
false
Description
​
Name
container
Type
ItemContainerContents
Has Getter
true
Has Setter
false
Description
​
Name
containerLoot
Type
SeededContainerLoot
Has Getter
true
Has Setter
false
Description
​
Name
creativeSlotLock
Type
boolean
Has Getter
true
Has Setter
false
Description
Gets the data in <componenttype:minecraft:creative_slot_lock>
Name
customData
Type
CustomData
Has Getter
true
Has Setter
false
Description
Gets the data in the <componenttype:minecraft:custom_data>
Name
customModelData
Type
CustomModelData
Has Getter
true
Has Setter
false
Description
Gets the data in <componenttype:minecraft:custom_model_data>
Name
customName
Type
Component
Has Getter
true
Has Setter
false
Description
Gets the data in the <componenttype:minecraft:custom_name>

A custom name is generally displayed in italics and controlled by the user.
Name
damage
Type
int
Has Getter
true
Has Setter
false
Description
Gets the data in the <componenttype:minecraft:damage>
Name
damageableItem
Type
boolean
Has Getter
true
Has Setter
false
Description
Returns if the ItemStack is damageable
I.E Swords and tools are damageable, sticks are not.
Name
damaged
Type
boolean
Has Getter
true
Has Setter
false
Description
Returns if the ItemStack is damaged
I.E a Swords that is no at full durability is damaged.
Name
debugStickState
Type
DebugStickState
Has Getter
true
Has Setter
false
Description
​
Name
definition
Type
ItemDefinition
Has Getter
true
Has Setter
false
Description
​
Name
descriptionId
Type
string
Has Getter
true
Has Setter
false
Description
Returns the unlocalized Name of the Item in the ItemStack
Name
displayName
Type
Component
Has Getter
true
Has Setter
false
Description
Gets the display name of the ItemStack
Name
dyedColor
Type
DyedItemColor
Has Getter
true
Has Setter
false
Description
​
Name
enchantmentGlintOverride
Type
boolean
Has Getter
true
Has Setter
false
Description
Gets the data in <componenttype:minecraft:enchantment_glint_override>

If it is present, it is first checked to determine whether there is special behaviour, otherwise
the code checks for enchantments.
Name
enchantments
Type
ItemEnchantments
Has Getter
true
Has Setter
false
Description
Gets the data in <componenttype:minecraft:enchantments>
Name
entityData
Type
CustomData
Has Getter
true
Has Setter
false
Description
​
Name
fireworkExplosion
Type
FireworkExplosion
Has Getter
true
Has Setter
false
Description
​
Name
fireworks
Type
Fireworks
Has Getter
true
Has Setter
false
Description
​
Name
food
Type
FoodProperties
Has Getter
true
Has Setter
false
Description
Gets the data in <componenttype:minecraft:food>
Name
hasAttributeModifiers
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks whether the ComponentAccess has <componenttype:minecraft:attribute_modifiers>
Name
hasBannerPatterns
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasBaseColor
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasBees
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasBlockEntityData
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasBlockState
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasBucketEntityData
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasBundleContents
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasCanBreak
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks whether the ComponentAccess has <componenttype:minecraft:can_break>
Name
hasCanPlaceOn
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks whether the ComponentAccess has <componenttype:minecraft:can_place_on>
Name
hasChargedProjectiles
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasContainer
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasContainerLoot
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasCustomData
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks whether the ComponentAccess has the <componenttype:minecraft:custom_data>
Name
hasCustomModelData
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks whether the ComponentAccess has <componenttype:minecraft:custom_model_data>
Name
hasCustomName
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks whether the ComponentAccess has the <componenttype:minecraft:custom_name>
Name
hasDamage
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks whether the ComponentAccess has the <componenttype:minecraft:damage>
Name
hasDebugStickState
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasDyedColor
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasEnchantmentGlintOverride
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks whether the ComponentAccess has <componenttype:minecraft:enchantment_glint_override>
Name
hasEnchantments
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks whether the ComponentAccess has the <componenttype:minecraft:enchantments>
Name
hasEntityData
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasFireworkExplosion
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasFireworks
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasFoil
Type
boolean
Has Getter
true
Has Setter
false
Description
Returns true if this ItemStack has a foil effect.

Foil is the glint / effect that is added to enchanted ItemStacks (and other items).
Name
hasFood
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks whether the ComponentAccess has <componenttype:minecraft:food>
Name
hasInstrument
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasItemName
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks whether the ComponentAccess has the <componenttype:minecraft:item_namegt;
Name
hasLock
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasLodestoneTracker
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasLore
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks whether the ComponentAccess has the <componenttype:minecraft:lore>
Name
hasMapColor
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasMapDecorations
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasMapId
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasMapPostProcessing
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasMaxDamage
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks whether the ComponentAccess has the <componenttype:minecraft:max_damage>
Name
hasMaxStackSize
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks whether the ComponentAccess has the <componenttype:minecraft:max_stack_size>
Name
hasNoteBlockSound
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasOminousBottleAmplifier
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasPotDecorations
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasPotionContents
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasProfile
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasRarity
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks whether the ComponentAccess has the <componenttype:minecraft:rarity>
Name
hasRecipes
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasRepairCost
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks whether the ComponentAccess has <componenttype:minecraft:repair_cost>
Name
hasStoredEnchantments
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasSuspiciousStewEffects
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasTool
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks whether the ComponentAccess has <componenttype:minecraft:tool>
Name
hasTrim
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasUnbreakable
Type
boolean
Has Getter
true
Has Setter
false
Description
Checks whether the ComponentAccess has the <componenttype:minecraft:unbreakable>
Name
hasWritableBookContent
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hasWrittenBookContent
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
hideAdditionalTooltip
Type
boolean
Has Getter
true
Has Setter
false
Description
Gets the data in <componenttype:minecraft:hide_additional_tooltip>
Name
hideTooltip
Type
boolean
Has Getter
true
Has Setter
false
Description
Gets the data in <componenttype:minecraft:hide_tooltip>
Name
hoverName
Type
Component
Has Getter
true
Has Setter
false
Description
Gets the hover name of the ItemStack.

This will give the raw name without the formatting that 'displayName' applies.
Name
instrument
Type
Instrument
Has Getter
true
Has Setter
false
Description
​
Name
isEnchantable
Type
boolean
Has Getter
true
Has Setter
false
Description
Can this ItemStack be enchanted?
Name
isFireResistant
Type
boolean
Has Getter
true
Has Setter
false
Description
Gets the data in <componenttype:minecraft:fire_resistant>
Name
isImmutable
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
isIntangibleProjectile
Type
boolean
Has Getter
true
Has Setter
false
Description
Gets the data in <componenttype:minecraft:intangible_projectile>
Name
isMutable
Type
boolean
Has Getter
true
Has Setter
false
Description
​
Name
itemName
Type
Component
Has Getter
true
Has Setter
false
Description
Gets the data in the <componenttype:minecraft:custom_name>

In the case of items, an item name is set by the make to make a special instance of an item, such as with
ominous banners.
Name
items
Type
IItemStack[]
Has Getter
true
Has Setter
false
Description
​
Name
lockComponent
Type
invalid
Has Getter
true
Has Setter
false
Description
​
Name
lodestoneTracker
Type
LodestoneTracker
Has Getter
true
Has Setter
false
Description
​
Name
lore
Type
ItemLore
Has Getter
true
Has Setter
false
Description
Gets the data in the <componenttype:minecraft:lore>
Name
mapColor
Type
MapItemColor
Has Getter
true
Has Setter
false
Description
​
Name
mapDecorations
Type
MapDecorations
Has Getter
true
Has Setter
false
Description
​
Name
mapId
Type
invalid
Has Getter
true
Has Setter
false
Description
​
Name
mapPostProcessing
Type
MapPostProcessing
Has Getter
true
Has Setter
false
Description
​
Name
maxDamage
Type
int
Has Getter
true
Has Setter
false
Description
Returns the max damage of the ItemStack
This is the max durability of the ItemStack.
Name
maxStackSize
Type
int
Has Getter
true
Has Setter
false
Description
Gets the data in the <componenttype:minecraft:max_stack_size>
Name
noteBlockSound
Type
ResourceLocation
Has Getter
true
Has Setter
false
Description
​
Name
ominousBottleAmplifier
Type
int
Has Getter
true
Has Setter
false
Description
​
Name
owner
Type
string
Has Getter
true
Has Setter
false
Description
Gets owning mod for the Item in this IItemStack
Name
potDecorations
Type
PotDecorations
Has Getter
true
Has Setter
false
Description
​
Name
potionContents
Type
invalid
Has Getter
true
Has Setter
false
Description
​
Name
profile
Type
ResolvableProfile
Has Getter
true
Has Setter
false
Description
​
Name
prototype
Type
DataComponentMap
Has Getter
true
Has Setter
false
Description
​
Name
rarity
Type
Rarity
Has Getter
true
Has Setter
false
Description
Gets the data in the <componenttype:minecraft:rarity>
Name
recipes
Type
stdlib.List<ResourceLocation>
Has Getter
true
Has Setter
false
Description
​
Name
registryName
Type
ResourceLocation
Has Getter
true
Has Setter
false
Description
Gets the registry name for the Item in this IItemStack
Name
repairCost
Type
int
Has Getter
true
Has Setter
false
Description
Gets the data in <componenttype:minecraft:repair_cost>
Name
stackable
Type
boolean
Has Getter
true
Has Setter
false
Description
Returns if the ItemStack can have an amount greater than 1
I.E Swords and tools are not stackable, sticks are.
Name
storedEnchantments
Type
ItemEnchantments
Has Getter
true
Has Setter
false
Description
​
Name
suspiciousStewEffects
Type
SuspiciousStewEffects
Has Getter
true
Has Setter
false
Description
​
Name
tool
Type
Tool
Has Getter
true
Has Setter
false
Description
Gets the data in <componenttype:minecraft:tool>
Name
trim
Type
ArmorTrim
Has Getter
true
Has Setter
false
Description
​
Name
unbreakable
Type
Unbreakable
Has Getter
true
Has Setter
false
Description
Gets the data in the <componenttype:minecraft:unbreakable>
Name
useDuration
Type
int
Has Getter
true
Has Setter
false
Description
Gets the use duration of the ItemStack
Name
useOnRelease
Type
boolean
Has Getter
true
Has Setter
false
Description
Returns true if this stack is considered a crossbow item
Name
writableBookContent
Type
WritableBookContent
Has Getter
true
Has Setter
false
Description
​
Name
writtenBookContent
Type
WrittenBookContent
Has Getter
true
Has Setter
false
Description
​