Protected
constructorReadonly
emptyContains a count of the slots in the container that are empty.
This property can throw when used.
Readonly
sizeReturns the size capacity of the inventory container on this block.
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.
Returns a slot object for specifically managing a slot within a broader inventory.
This function can throw errors.
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.
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.
Represents the inventory of a Player in the world.