Piglin Brute icon

Piglin Brute Summon Command Generator

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

The piglin brute is the Nether's dead-end elite: it generates once with a bastion remnant and never respawns after it dies, which makes /summon the only renewable supply. For map-makers that scarcity is a feature — a brute reads as a set-piece miniboss precisely because players rarely meet one outside a fresh bastion.

Brutes ignore every rule that makes regular piglins manageable. Golden armor does nothing, gold ingots do not distract them, and they charge on sight with a golden axe that hits for 13 damage on normal difficulty. Stacked on a 50-point health pool, an unmodified brute already outclasses most overworld hostiles before you touch customHealth.

Use the presets here to push that further: rename one into a treasure-room warden, swap the axe for an enchanted netherite variant, or strip the sound and visibility for an ambush encounter. Remember the same zombification timer as regular piglins applies, so Overworld arenas need the immunity tag.

Example commands

Treasure room warden

/summon minecraft:piglin_brute ~ ~ ~ {equipment:{mainhand:{id:"minecraft:netherite_axe",count:1,components:{"minecraft:enchantments":{"minecraft:sharpness":3}}}},PersistenceRequired:1b,Glowing:1b,CustomName:"Warden of the Hoard",CustomNameVisible:1b,Health:120f,attributes:[{id:"minecraft:max_health",base:120}]}

Name, glow outline, tripled health, and an upgraded axe in one command — a miniboss that telegraphs its threat level from across the bastion bridge.

Invisible corridor ambusher

/summon minecraft:piglin_brute ~ ~ ~ {equipment:{mainhand:{id:"minecraft:iron_axe",count:1}},active_effects:[{id:"minecraft:invisibility",duration:999999,amplifier:0b,show_particles:0b}],Silent:1b}

Invisibility hides the body but not the held axe, so players see a floating weapon stalking the hallway — an unsettling effect that costs zero resource packs.

Armored line-breaker

/summon minecraft:piglin_brute ~ ~ ~ {equipment:{chest:{id:"minecraft:iron_chestplate",count:1},head:{id:"minecraft:netherite_helmet",count:1}},PersistenceRequired:1b,Health:80f,attributes:[{id:"minecraft:max_health",base:80}]}

Brutes never wear armor naturally, so a plated one signals a custom encounter; the armor points meaningfully stretch its already large health pool.

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:piglin_brute ~ ~ ~ {HandItems:[{id:"minecraft:netherite_axe",Count:1b,tag:{Enchantments:[{id:"minecraft:sharpness",lvl:3s}]}},{}],PersistenceRequired:1b,Glowing:1b,CustomName:'{"text":"Warden of the Hoard"}',CustomNameVisible:1b,Health:120f,Attributes:[{Name:"generic.max_health",Base:120}]}

Java 1.21.4

/summon minecraft:piglin_brute ~ ~ ~ {HandItems:[{id:"minecraft:netherite_axe",count:1,components:{"minecraft:enchantments":{levels:{"minecraft:sharpness":3},show_in_tooltip:true}}},{}],PersistenceRequired:1b,Glowing:1b,CustomName:'{"text":"Warden of the Hoard"}',CustomNameVisible:1b,Health:120f,attributes:[{id:"minecraft:max_health",base:120}]}

Java 26.2

/summon minecraft:piglin_brute ~ ~ ~ {equipment:{mainhand:{id:"minecraft:netherite_axe",count:1,components:{"minecraft:enchantments":{"minecraft:sharpness":3}}}},PersistenceRequired:1b,Glowing:1b,CustomName:"Warden of the Hoard",CustomNameVisible:1b,Health:120f,attributes:[{id:"minecraft:max_health",base:120}]}

Bedrock 26.x

/summon minecraft:piglin_brute "Warden of the Hoard" ~ ~ ~
  • Bedrock /summon does not accept Java entity NBT; omitted hand equipment, Health/Attributes, traits (persistent, glowing, custom_name_visible).

Worth knowing

  • Piglin brutes generate only when a bastion remnant first loads and are never replaced after death, so every command-spawned brute is effectively a limited-edition encounter recreated on demand.
  • Golden armor offers no protection from a piglin brute — it attacks players on sight regardless of what they wear, and it cannot be distracted by gold ingots, gold blocks, or opened chests.
  • A brute carries 50 health, more than three times the 16 of a standard piglin, and swings a golden axe rather than rolling between sword and crossbow loadouts.
  • Brutes zombify in the Overworld or End on the same 15-second timer as other piglins, and the resulting zombified piglin keeps holding the axe.
  • Unlike regular piglins, brutes do not flee from soul fire, soul torches, or zoglins, so soul-lantern barriers that herd piglins will not slow a brute down.

FAQ

Does gold armor make a piglin brute passive?

No. The gold-armor truce only applies to regular piglins; a piglin brute attacks any player it sees no matter what they are wearing.

How much health does a piglin brute have?

50 health points, or 25 hearts — compared to 16 for a normal piglin. Use customHealth to scale that up for boss arenas or down for early-game encounters.

Can I keep a summoned brute in the Overworld?

Only with IsImmuneToZombification:1b in the summon data. Without it the brute converts to a zombified piglin after about 15 seconds, axe still in hand.