Wither Skeleton icon

Wither Skeleton Summon Command Generator

  • Category: hostile
  • Baby variant: no
  • Entity id: minecraft:wither_skeleton

Wither skeletons are the nether fortress elite: stone-sword melee, total fire immunity, and a hit that applies the Wither effect, draining hearts straight through armor. Summoning one by command skips the fortress spawn rules entirely, which makes them a favorite for boss arenas, nether-themed dungeons, and skull-farming test rigs.

This generator handles the equipment NBT that makes them dangerous. Swap the stone sword for an enchanted iron or netherite blade, dress one in a full armor set for a miniboss, raise its health beyond the default 20, or seat it on a spider for a fortress bridge ambush.

Plan geometry around their height: at roughly 2.4 blocks tall, a wither skeleton is walled out by two-block gaps that players slip through, which cuts both ways in arena design.

Example commands

Classic fortress guard

/summon minecraft:wither_skeleton ~ ~ ~ {equipment:{mainhand:{id:"minecraft:stone_sword",count:1,components:{"minecraft:enchantments":{"minecraft:sharpness":2}}}}}

Restores the natural stone-sword loadout that /summon skips, with a small sharpness bump for harder corridors.

Netherite miniboss

/summon minecraft:wither_skeleton ~ ~ ~ {equipment:{feet:{id:"minecraft:netherite_boots",count:1},legs:{id:"minecraft:netherite_leggings",count:1},chest:{id:"minecraft:netherite_chestplate",count:1},head:{id:"minecraft:netherite_helmet",count:1},mainhand:{id:"minecraft:netherite_sword",count:1,components:{"minecraft:enchantments":{"minecraft:sharpness":4,"minecraft:fire_aspect":2}}}},CustomName:"Fortress Warden",CustomNameVisible:1b,Health:60f,attributes:[{id:"minecraft:max_health",base:60}]}

Triple health, full netherite, and a flaming blade wielded by a mob that fire can never touch back.

Spider jockey ambush

/summon minecraft:spider ~ ~ ~ {Passengers:[{id:"minecraft:wither_skeleton"}]}

The spider carries its rider over walls and up cliffs, turning a slow melee mob into a mobile threat on fortress bridges.

Backline archer

/summon minecraft:wither_skeleton ~ ~ ~ {equipment:{mainhand:{id:"minecraft:bow",count:1}}}

A bow flips its combat AI to ranged, giving nether encounters a firing line behind the sword wall.

The same build across versions

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

Java 1.16

/summon minecraft:wither_skeleton ~ ~ ~ {ArmorItems:[{id:"minecraft:netherite_boots",Count:1b},{id:"minecraft:netherite_leggings",Count:1b},{id:"minecraft:netherite_chestplate",Count:1b},{id:"minecraft:netherite_helmet",Count:1b}],HandItems:[{id:"minecraft:netherite_sword",Count:1b,tag:{Enchantments:[{id:"minecraft:sharpness",lvl:4s},{id:"minecraft:fire_aspect",lvl:2s}]}},{}],CustomName:'{"text":"Fortress Warden"}',CustomNameVisible:1b,Health:60f,Attributes:[{Name:"generic.max_health",Base:60}]}

Java 1.21.4

/summon minecraft:wither_skeleton ~ ~ ~ {ArmorItems:[{id:"minecraft:netherite_boots",count:1},{id:"minecraft:netherite_leggings",count:1},{id:"minecraft:netherite_chestplate",count:1},{id:"minecraft:netherite_helmet",count:1}],HandItems:[{id:"minecraft:netherite_sword",count:1,components:{"minecraft:enchantments":{levels:{"minecraft:sharpness":4,"minecraft:fire_aspect":2},show_in_tooltip:true}}},{}],CustomName:'{"text":"Fortress Warden"}',CustomNameVisible:1b,Health:60f,attributes:[{id:"minecraft:max_health",base:60}]}

Java 26.2

/summon minecraft:wither_skeleton ~ ~ ~ {equipment:{feet:{id:"minecraft:netherite_boots",count:1},legs:{id:"minecraft:netherite_leggings",count:1},chest:{id:"minecraft:netherite_chestplate",count:1},head:{id:"minecraft:netherite_helmet",count:1},mainhand:{id:"minecraft:netherite_sword",count:1,components:{"minecraft:enchantments":{"minecraft:sharpness":4,"minecraft:fire_aspect":2}}}},CustomName:"Fortress Warden",CustomNameVisible:1b,Health:60f,attributes:[{id:"minecraft:max_health",base:60}]}

Bedrock 26.x

/summon minecraft:wither_skeleton "Fortress Warden" ~ ~ ~
  • Bedrock /summon does not accept Java entity NBT; omitted armor equipment, hand equipment, Health/Attributes, traits (custom_name_visible).

Worth knowing

  • A bare /summon wither_skeleton spawns empty-handed — the stone sword belongs to natural fortress spawns, so command builds need explicit equipment.
  • Melee hits from a wither skeleton apply the Wither effect, which drains health through armor and blacks out the heart display so victims cannot read their remaining health.
  • Wither skeletons are immune to fire and lava, so flame traps, fire aspect, and lava moats do nothing against them.
  • They count as undead: Smite deals bonus damage, healing effects hurt them, harming effects heal them, and the Wither effect itself cannot touch them.
  • Standing about 2.4 blocks tall, they cannot chase players through two-block-high openings, which changes corridor and arena design.

FAQ

Do summoned wither skeletons drop skulls?

Yes — they use the normal loot table, so the skull drop stays rare and Looting on the killing weapon still raises the odds.

Why does my wither skeleton spawn without a sword?

Summoned mobs skip the natural gear roll. Add a mainhand weapon in the generator; the stone sword only appears on fortress spawns.

Can a wither skeleton use a bow?

Yes. Hand one a bow and it switches to skeleton-style ranged attacks, which makes a solid backline unit behind melee variants.