Zombified Piglin icon

Zombified Piglin Summon Command Generator

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

Zombified piglins occupy a rare niche: a mob that looks menacing, spawns in crowds, and yet leaves players completely alone until someone throws the first punch. That neutrality is a gift for map design — you can pack a Nether-themed corridor with them as living scenery, knowing the whole pack turns on any player reckless enough to swing.

They are also proper undead. Smite carves through them, Instant Damage potions heal them, Instant Health hurts them, and unlike zombies they never catch fire at sunrise, so an Overworld build can keep them on display around the clock. Fire and lava immunity rounds it out, letting you stage them wading through lava moats without losses.

The generator handles the details that sell the fantasy: an enchanted golden sword in the mainhand, a strider mount for the classic lava-lake jockey, or a baby variant sprinting circles around the arena. Every preset below produces a single self-contained /summon command.

Example commands

Strider outrider

/summon minecraft:strider ~ ~ ~ {Passengers:[{id:"minecraft:zombified_piglin"}]}

Recreates the natural lava-lake jockey — striders sometimes spawn with a zombified piglin rider steering them across the Nether's oceans.

Gold-fanged enforcer

/summon minecraft:zombified_piglin ~ ~ ~ {equipment:{mainhand:{id:"minecraft:golden_sword",count:1,components:{"minecraft:enchantments":{"minecraft:sharpness":4,"minecraft:fire_aspect":1}}}},PersistenceRequired:1b,CustomName:"Grave Sergeant",CustomNameVisible:1b,Health:60f,attributes:[{id:"minecraft:max_health",base:60}]}

Name, tripled health, and a Sharpness IV blade stack into one command — anger this one and the fight actually earns its pack-aggro consequences.

Baby sprinter

/summon minecraft:zombified_piglin ~ ~ ~ {IsBaby:1b,Glowing:1b}

Baby zombified piglins move noticeably faster than adults; the glow outline keeps the small hitbox trackable through crimson forest clutter.

Frozen honor guard

/summon minecraft:zombified_piglin ~ ~ ~ {equipment:{mainhand:{id:"minecraft:golden_sword",count:1}},NoAI:1b,Silent:1b,PersistenceRequired:1b}

With AI disabled the pack-anger mechanic never fires, so these make safe statue rows flanking a portal room — players can bump them without a riot.

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:zombified_piglin ~ ~ ~ {HandItems:[{id:"minecraft:golden_sword",Count:1b,tag:{Enchantments:[{id:"minecraft:sharpness",lvl:4s},{id:"minecraft:fire_aspect",lvl:1s}]}},{}],PersistenceRequired:1b,CustomName:'{"text":"Grave Sergeant"}',CustomNameVisible:1b,Health:60f,Attributes:[{Name:"generic.max_health",Base:60}]}

Java 1.21.4

/summon minecraft:zombified_piglin ~ ~ ~ {HandItems:[{id:"minecraft:golden_sword",count:1,components:{"minecraft:enchantments":{levels:{"minecraft:sharpness":4,"minecraft:fire_aspect":1},show_in_tooltip:true}}},{}],PersistenceRequired:1b,CustomName:'{"text":"Grave Sergeant"}',CustomNameVisible:1b,Health:60f,attributes:[{id:"minecraft:max_health",base:60}]}

Java 26.2

/summon minecraft:zombified_piglin ~ ~ ~ {equipment:{mainhand:{id:"minecraft:golden_sword",count:1,components:{"minecraft:enchantments":{"minecraft:sharpness":4,"minecraft:fire_aspect":1}}}},PersistenceRequired:1b,CustomName:"Grave Sergeant",CustomNameVisible:1b,Health:60f,attributes:[{id:"minecraft:max_health",base:60}]}

Bedrock 26.x

/summon minecraft:zombified_piglin "Grave Sergeant" ~ ~ ~
  • Bedrock /summon does not accept Java entity NBT; omitted hand equipment, Health/Attributes, traits (persistent, custom_name_visible).

Worth knowing

  • Hitting one zombified piglin angers every other zombified piglin in the vicinity, and the grudge persists for a while even against players who sprint out of sight.
  • They are immune to fire and lava and do not burn in daylight, unlike ordinary zombies — a mixed undead lineup will see the zombies ignite at dawn while these keep patrolling.
  • As undead mobs they take extra damage from Smite, are healed by Instant Damage, harmed by Instant Health, and ignored by the wither.
  • A pig struck by lightning transforms into a zombified piglin, which is why they occasionally appear in Overworld thunderstorms far from any portal.
  • Striders can spawn with a zombified piglin rider that holds a warped fungus on a stick, steering the strider across lava like a player would.

FAQ

Is a summoned zombified piglin hostile right away?

No — it spawns neutral and only attacks after being hit. One hit also angers the surrounding pack, so a crowded room escalates fast.

Does a zombified piglin burn in sunlight?

No. Unlike zombies, zombified piglins take no damage from daylight, and they also shrug off fire and lava, so they work as permanent Overworld set dressing.

Can a zombified piglin ride a strider?

Yes — it happens naturally in the Nether, with the rider holding a warped fungus on a stick. The strider outrider preset reproduces the pairing with a single command.