Netherite Sword icon

Netherite Sword Give Command Generator

  • Item id: minecraft:netherite_sword
  • Command: /give

The netherite sword is the item people push furthest past survival limits: Sharpness 1000, Looting stacked over the cap, unbreakable, a named blade with lore. /give is the only command that accepts those over-cap values -- /enchant validates and refuses them -- and this editor writes the full component payload without hand-escaping a single bracket.

The version selector matters here more than for most items. Java 1.20.5 moved item data from NBT tags like Enchantments and display into item components, so a Sharpness 1000 command copied from an old forum post silently fails on a current world. Build it below and the generator emits whichever form your target version parses.

Example commands

Plain netherite sword

/give @p minecraft:netherite_sword 1

The baseline command, identical in spirit across every version and edition.

Sharpness 1000 sword

/give @p minecraft:netherite_sword[enchantments={"minecraft:sharpness":1000}] 1

The classic over-cap enchant. Only /give writes levels above the vanilla maximum of 5.

Named unbreakable boss-drop blade

/give @p minecraft:netherite_sword[custom_name={text:"Warden Bane",color:"dark_purple"},lore=["Forged in the deep dark"],enchantments={"minecraft:sharpness":10,"minecraft:looting":5},unbreakable={}] 1

A multi-feature reward item: colored name, lore line, two over-cap enchantments and unbreakable.

The same build across versions

Rows appear only where the output actually changes -- copy the one that matches your world.

Java 1.16

/give @p minecraft:netherite_sword{display:{Name:'{"text":"Warden Bane","color":"dark_purple"}',Lore:['{"text":"Forged in the deep dark"}']},Enchantments:[{id:"minecraft:sharpness",lvl:10s},{id:"minecraft:looting",lvl:5s}],Unbreakable:1b} 1

Java 1.21.4

/give @p minecraft:netherite_sword[custom_name='{"text":"Warden Bane","color":"dark_purple"}',lore=['{"text":"Forged in the deep dark"}'],enchantments={levels:{"minecraft:sharpness":10,"minecraft:looting":5},show_in_tooltip:true},unbreakable={show_in_tooltip:true}] 1

Java 26.2

/give @p minecraft:netherite_sword[custom_name={text:"Warden Bane",color:"dark_purple"},lore=["Forged in the deep dark"],enchantments={"minecraft:sharpness":10,"minecraft:looting":5},unbreakable={}] 1

Bedrock 26.x

# Bedrock Stable - run this block for one item, then hold it in your main hand before /enchant.
# Omitted Java-only item data for Bedrock: custom_name, lore, unbreakable.
/give @p netherite_sword 1
# Pick up the item, select it in your main hand, then run:
/enchant @p sharpness 10
/enchant @p looting 5
  • Omitted Java-only item data for Bedrock: custom_name, lore, unbreakable.

Worth knowing

  • Netherite gear does not burn in lava or fire -- dropped custom swords survive where diamond loot is destroyed.
  • Attack damage from enchantments caps out visually in the tooltip, but over-cap Sharpness keeps scaling the actual hit.
  • Unbreakable removes the durability bar entirely; combined with Mending the extra XP is simply absorbed with no effect.

FAQ

How do I give a netherite sword with Sharpness 1000?

Add the Sharpness enchantment in the editor and type 1000 as the level. /give accepts any level; /enchant refuses anything above 5, which is why over-cap gear always goes through /give.

Why does my netherite sword command fail on 1.21?

Commands written for 1.20.4 and below use legacy NBT ({Enchantments:[...]}); 1.20.5+ expects item components ([enchantments={...}]). Select your real version above and copy the regenerated command.

Does the give netherite sword command work on Bedrock?

The plain /give works, but Bedrock has no component or NBT payload for enchantments in /give -- the generator emits the plain command and warns about every Java-only field it had to drop.