Skip to main content

Item Result

The item result drops or creates a vanilla Minecraft item when crafting finishes.

Basic example

result:
one:
type: item
offset: "0 0 0"
item:
material: NETHER_STAR

Item with display name, lore, and model data

result:
one:
type: item
offset: "0 0 0"
item:
material: PAPER
display-name: "<aqua>Magic Scroll"
lore:
- "<gray>A scroll created by an altar."
model: 1001

Enchanted item

result:
one:
type: item
offset: "0 0 0"
item:
material: ENCHANTED_BOOK
enchantments:
SHARPNESS: 5

Fields

FieldTypeDescription
offsetVectorWhere the item appears, relative to the structure center.
item.materialMaterialMinecraft item material.
item.display-nameTextItem display name.
item.nameTextAlternative display name field.
item.loreList or textItem lore.
item.amountNumberStack amount.
item.modelNumberCustom model data.
item.unbreakableBooleanMakes the item unbreakable.
item.enchantmentsSectionEnchantments to apply.
item.setSectionCustom persistent data values.

Offset example

offset: "0 1 0"

This places the result one block above the structure center.