Beta
Type of item to create. See the @minecraft/vanilla-data.MinecraftItemTypes enumeration for a list of standard item types in Minecraft experiences.
Optional
amount: numberNumber of items to place in the stack, between 1-255. The provided value will be clamped to the item's maximum stack size. Note that certain items can only have one item in the stack.
Creates a new instance of a stack of items for use in the world.
Throws if itemType
is invalid, or if amount
is outside
the range of 1-255.
Readonly
isReturns whether the item is stackable. An item is considered stackable if the item's maximum stack size is greater than 1 and the item does not contain any custom data or properties.
Readonly
maxThe maximum stack size. This value varies depending on the type of item. For example, torches have a maximum stack size of 64, while eggs have a maximum stack size of 16.
Readonly
typeThe type of the item.
Readonly
typeIdentifier of the type of items for the stack. If a namespace is not specified, 'minecraft:' is assumed. Examples include 'wheat' or 'apple'.
The identifier of the component (e.g., 'minecraft:food') to retrieve. If no namespace prefix is specified, 'minecraft:' is assumed. If the component is not present on the item stack, undefined is returned.
Gets a component (that represents additional capabilities) for an item stack.
durability.ts
// Get the maximum durability of a custom sword item
const itemStack = new ItemStack("custom:sword");
const durability = itemStack.getComponent("minecraft:durability") as ItemDurabilityComponent;
const maxDurability = durability.maxDurability;
Returns all components that are both present on this item stack and supported by the API.
Returns whether this item stack can be stacked with the
given itemStack
. This is determined by comparing the item
type and any custom data and properties associated with the
item stacks. The amount of each item stack is not taken into
consideration.
Beta
Optional
loreList: string[]Sets the lore value - a secondary display string - for an ItemStack.
This function can't be called in read-only mode.
This function can throw errors.
diamondAwesomeSword.ts
const diamondAwesomeSword = new mc.ItemStack(mc.MinecraftItemTypes.diamondSword, 1);
let players = mc.world.getAllPlayers();
diamondAwesomeSword.setLore(["§c§lDiamond Sword of Awesome§r", "+10 coolness", "§p+4 shiny§r"]);
// hover over/select the item in your inventory to see the lore.
const inventory = players[0].getComponent("inventory") as mc.EntityInventoryComponent;
inventory.container.setItem(0, diamondAwesomeSword);
let item = inventory.container.getItem(0);
if (item) {
let enchants = item.getComponent("minecraft:enchantments") as mc.ItemEnchantsComponent;
let knockbackEnchant = new mc.Enchantment("knockback", 3);
enchants.enchantments.addEnchantment(knockbackEnchant);
}
multilineLore.ts
// Set the lore of an item to multiple lines of text
const itemStack = new ItemStack("minecraft:diamond_sword");
itemStack.setLore(["Line 1", "Line 2", "Line 3"]);
Defines a collection of items.