Husk icon

Husk Summon Command Generator

  • Category: hostile
  • Baby variant: yes
  • Entity id: minecraft:husk

The husk is the zombie rebalanced for daylight maps: it never catches fire in the sun, so a desert arena can run at high noon without every undead combatant burning down before the fight starts. For outdoor encounter design, that one property makes husks the default melee body over regular zombies.

Its second hook is the debuff. A husk's melee hit applies Hunger, draining the food bar faster and starving out the passive regeneration players rely on between waves. Extended fights against husk packs punish anyone who skimped on rations, which is a resource-pressure lever no plain zombie provides.

The generator supports the full zombie-family kit: armor and held weapons render on the model, the baby trait produces the fast small variant, and passengers or custom names build out named desert bosses.

Example commands

Baby husk rush

/summon minecraft:husk ~ ~ ~ {IsBaby:1b,CustomName:"Sand Nipper"}

Baby husks sprint faster than adults and never grow up, so a wave of named Sand Nippers makes a frantic opener before the armored adults arrive.

Gilded desert brute

/summon minecraft:husk ~ ~ ~ {equipment:{feet:{id:"minecraft:golden_boots",count:1},legs:{id:"minecraft:golden_leggings",count:1},chest:{id:"minecraft:golden_chestplate",count:1},head:{id:"minecraft:golden_helmet",count:1},mainhand:{id:"minecraft:golden_sword",count:1,components:{"minecraft:enchantments":{"minecraft:sharpness":2}}}},Health:50f,attributes:[{id:"minecraft:max_health",base:50}]}

Gold armor fits a tomb-guardian theme, and every sword hit still layers Hunger on top of the Sharpness II damage.

Dune sentinel

/summon minecraft:husk ~ ~ ~ {PersistenceRequired:1b,Glowing:1b,CustomName:"Dune Sentinel",CustomNameVisible:1b}

Glowing plus a visible nameplate makes it readable across open dunes at range, and persistence keeps it posted between player visits.

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:husk ~ ~ ~ {ArmorItems:[{id:"minecraft:golden_boots",Count:1b},{id:"minecraft:golden_leggings",Count:1b},{id:"minecraft:golden_chestplate",Count:1b},{id:"minecraft:golden_helmet",Count:1b}],HandItems:[{id:"minecraft:golden_sword",Count:1b,tag:{Enchantments:[{id:"minecraft:sharpness",lvl:2s}]}},{}],Health:50f,Attributes:[{Name:"generic.max_health",Base:50}]}

Java 1.21.4

/summon minecraft:husk ~ ~ ~ {ArmorItems:[{id:"minecraft:golden_boots",count:1},{id:"minecraft:golden_leggings",count:1},{id:"minecraft:golden_chestplate",count:1},{id:"minecraft:golden_helmet",count:1}],HandItems:[{id:"minecraft:golden_sword",count:1,components:{"minecraft:enchantments":{levels:{"minecraft:sharpness":2},show_in_tooltip:true}}},{}],Health:50f,attributes:[{id:"minecraft:max_health",base:50}]}

Java 26.2

/summon minecraft:husk ~ ~ ~ {equipment:{feet:{id:"minecraft:golden_boots",count:1},legs:{id:"minecraft:golden_leggings",count:1},chest:{id:"minecraft:golden_chestplate",count:1},head:{id:"minecraft:golden_helmet",count:1},mainhand:{id:"minecraft:golden_sword",count:1,components:{"minecraft:enchantments":{"minecraft:sharpness":2}}}},Health:50f,attributes:[{id:"minecraft:max_health",base:50}]}

Bedrock 26.x

/summon minecraft:husk ~ ~ ~
  • Bedrock /summon does not accept Java entity NBT; omitted armor equipment, hand equipment, Health/Attributes.

Worth knowing

  • Husks take no fire damage from sunlight, unlike zombies, so they roam deserts at midday completely unharmed.
  • A husk's melee attack inflicts Hunger, and the effect lasts longer as local difficulty climbs, accelerating food-bar drain during long fights.
  • A husk that stays submerged in water eventually converts into a regular zombie, and that zombie can then convert again into a drowned.
  • In desert biomes, the large majority of zombie-category spawns appear as husks rather than ordinary zombies.
  • Baby husks move faster than adults, fit through one-block gaps, and remain babies permanently.

FAQ

Does a husk burn in sunlight like a zombie?

No. Sun immunity is the husk's defining trait, so daytime desert encounters need no helmet tricks or shade to keep the mob alive.

What does a husk's Hunger effect actually do?

It drains the target's food saturation and hunger bar faster than normal, which suppresses natural health regeneration. Over a long fight that starves out sustain rather than dealing direct damage.

Can I summon a baby husk?

Yes, toggle the baby trait. The small variant runs faster, hits for the same debuff, and never ages into an adult.