Protected
constructorReadonly
emptyContains a count of the slots in the container that are empty.
This property can throw when used.
Readonly
sizeRepresents the size of the container. For example, a standard single-block chest has a size of 27, for the 27 slots in their inventory.
This property can throw when used.
The stack of items to add.
Adds an item to the specified container. Item will be placed in the first available empty slot. (use .setItem if you wish to set items in a particular slot.)
This function can throw errors.
Zero-based index of the slot to retrieve items from.
Gets the item stack for the set of items at the specified slot. If the slot is empty, returns undefined. This method does not change or clear the contents of the specified slot.
This function can throw errors.
getItem.js
const rightInventoryComp = rightChestCart.getComponent("inventory");
const rightChestContainer = rightInventoryComp.container;
const itemStack = rightChestContainer.getItem(0);
test.assert(itemStack.id === "apple", "Expected apple");
test.assert(itemStack.amount === 10, "Expected 10 apples");
Zero-based index of the slot to set an item at.
Optional
itemStack: ItemStackStack of items to place within the specified slot.
Sets an item stack within a particular slot.
This function can throw errors.
Zero-based index of the slot to swap from this container.
Zero-based index of the slot to swap with.
Target container to swap with. Note this can be the same container as this source.
Swaps items between two different slots within containers.
This function can throw errors.
swapItems.js
rightChestContainer.swapItems(1, 0, leftChestContainer); // swap the cake and emerald
Zero-based index of the slot to move to.
Target container to transfer to. Note this can be the same container as the source.
Moves an item from one slot to another, potentially across containers.
This function can throw errors.
transferItem.js
rightChestContainer.transferItem(0, 4, chestCartContainer); // transfer the apple from the right chest to a chest cart
Represents a container that can hold sets of items. Used with entities such as Players, Chest Minecarts, Llamas, and more.