MCTOOLBOX
MC ToolboxMC TOOLBOX

July 17, 2026

Commands & Data

Minecraft 26.x Item Components: Equippable, Food & Consumable

Master advanced 26.x item component tags: turn any item into custom armor, edible items, or damage-resistant artifacts.

Minecraft 26.x unlocked unprecedented item customization by exposing core game behaviors as modular item components. You can now make a Nether Star wearable on your head as a hat or make a Stick edible with custom potion effects!

1. The equippable Component

Equip any item onto head, chest, legs, feet, or offhand slots with custom sound effects:

[equippable={slot:"head",equip_sound:"item.armor.equip_diamond"}]

Item component editor interface
Configuring equippable and consumable item tags in MC Toolbox.

2. The food & consumable Components

Define custom nutrition, saturation, and eat animations for non-food items:

[food={nutrition:6,saturation:1.2},consumable={consume_seconds:1.5,animation:"eat"}]

3. The damage_resistant Component

Make any item immune to fire, lava, or cactus damage without making it Netherite:

[damage_resistant={types:"#minecraft:is_fire"}]

Build custom component items visually with our 1.21+ /give Generator!

Design the item as separate behaviors

  1. Choose a stable base item and create a minimal give command.
  2. Add the equippable behavior and verify the intended slot and visual asset.
  3. Add consumable timing and animation, then test cancellation and repeated use.
  4. Add food or use-remainder behavior only after consumption works.
  5. Inspect the final tooltip and test the item in survival and creative modes.

Why incremental testing matters

Components can be individually valid but conflict in the finished design. An item may equip correctly yet fail to consume, or consume but leave an unexpected remainder. Keep a known-good command for each step and compare it with the first failing version.

Component schemas continue to evolve. Generate syntax for the selected release and avoid copying a component object from a different game version without checking its current fields.

Gio Nui

Gio Nui

Independent web developer and editor of MC Toolbox. Guides are maintained alongside the site's browser-based Minecraft tools, with commands, file formats and version notes reviewed during updates.

More Guides