Pillager icon

Pillager Summon Command Generator

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

Pillagers are the workhorse ranged mob for illager-themed content: cheap to place in numbers, instantly readable to players, and dangerous at range thanks to the crossbow. A custom summon lets you go beyond the vanilla patrol - hand-pick the crossbow's enchantments, rename individual raiders, tune health per wave, and mount one on a ravager for a proper vanguard unit.

The one mechanic that trips people up is the weapon dependency: a pillager fights only while it holds a crossbow. That makes the hand slot the single most important field in this builder. Fill it for combatants, or deliberately leave it empty to create harmless background illagers for camps, prisons, and dialogue scenes.

Everything you toggle here lands in one paste-ready command. Health defaults to 24, so bumping it to 40 or so gives a raider that survives roughly one extra fully-charged bow shot - handy when balancing wave difficulty.

Example commands

Outpost marksman with upgraded crossbow

/summon minecraft:pillager ~ ~ ~ {equipment:{mainhand:{id:"minecraft:crossbow",count:1,components:{"minecraft:enchantments":{"minecraft:unbreaking":3,"minecraft:mending":1}}}},CustomName:"Outpost Marksman"}

Pairs a custom name with an explicitly defined crossbow; illagers render held items, so the weapon shows in its hands exactly as configured.

Ravager vanguard jockey

/summon minecraft:ravager ~ ~ ~ {Passengers:[{id:"minecraft:pillager"}]}

The classic raid wave-five pairing: a ravager that rams through crowds while the pillager on top keeps firing bolts over its head.

Disarmed camp prisoner

/summon minecraft:pillager ~ ~ ~ {PersistenceRequired:1b}

With no crossbow in hand this illager never attacks anything, and persistent stops it despawning - ideal set dressing for a captured raider scene.

Tanky wave anchor

/summon minecraft:pillager ~ ~ ~ {Glowing:1b,Health:40f,attributes:[{id:"minecraft:max_health",base:40}]}

Nearly double health plus a glowing outline marks this raider as the priority kill players must find through smoke and walls.

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:pillager ~ ~ ~ {HandItems:[{id:"minecraft:crossbow",Count:1b,tag:{Enchantments:[{id:"minecraft:unbreaking",lvl:3s},{id:"minecraft:mending",lvl:1s}]}},{}],CustomName:'{"text":"Outpost Marksman"}'}

Java 1.21.4

/summon minecraft:pillager ~ ~ ~ {HandItems:[{id:"minecraft:crossbow",count:1,components:{"minecraft:enchantments":{levels:{"minecraft:unbreaking":3,"minecraft:mending":1},show_in_tooltip:true}}},{}],CustomName:'{"text":"Outpost Marksman"}'}

Java 26.2

/summon minecraft:pillager ~ ~ ~ {equipment:{mainhand:{id:"minecraft:crossbow",count:1,components:{"minecraft:enchantments":{"minecraft:unbreaking":3,"minecraft:mending":1}}}},CustomName:"Outpost Marksman"}

Bedrock 26.x

/summon minecraft:pillager "Outpost Marksman" ~ ~ ~
  • Bedrock /summon does not accept Java entity NBT; omitted hand equipment.

Worth knowing

  • A pillager attacks only while it carries a crossbow; strip the weapon and it wanders around passively, which is a reliable way to build non-combat illager NPCs.
  • Patrol captains are marked by an ominous banner worn on the head - a plain summoned pillager without that banner has no raid-captain status.
  • Pillager outposts continuously spawn fresh pillagers nearby, so summoned reinforcements blend seamlessly into an outpost assault map.
  • During raids, pillagers can arrive riding ravagers, which is why the jockey preset above reads as authentic to players who have defended villages.
  • Pillagers hold their fire while reloading, creating a natural attack rhythm players can learn to punish in arena fights.

FAQ

How do I give a pillager an enchanted crossbow?

Set the mainhand slot to a crossbow and add enchantments like Unbreaking III in the item editor. The mob renders and fires whatever crossbow you define.

Why won't my pillager shoot at anyone?

Check its main hand first - no crossbow means no attacks at all. If the weapon is there, make sure you didn't enable no_ai, which freezes targeting entirely.

Will killing a summoned pillager give me Bad Omen and start a raid?

No. Raid-trigger mechanics come from killing a captain wearing an ominous banner. A standard summoned pillager carries no banner, so it dies without consequences.