Stray icon

Stray Summon Command Generator

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

The stray is the skeleton's frozen-biome variant, and its signature is built into every shot: its arrows apply Slowness, cutting a player's movement mid-fight. That single debuff changes encounter math, because slowed players cannot strafe arrows or sprint to cover, which makes even a lone stray on a ridge a genuine area-denial tool.

Everything that works on a skeleton summon works here. The stray renders all four armor slots and both hands, so the generator can hand it an enchanted bow, dress it in chainmail for a frost-guard look, or scale customHealth for an elite tundra sentinel guarding an ice-spike vault.

Strays care about sunlight the same way skeletons do, so outdoor snow-map encounters need a filled helmet slot or the fire_immune trait if players might arrive at noon.

Example commands

Rimefang the sniper

/summon minecraft:stray ~ ~ ~ {equipment:{mainhand:{id:"minecraft:bow",count:1,components:{"minecraft:enchantments":{"minecraft:power":3,"minecraft:punch":2}}}},CustomName:"Rimefang"}

Power III stacks with the built-in Slowness debuff while Punch II knocks slowed players back out of cover, a nasty combination on open ice.

Chainmail tundra guard

/summon minecraft:stray ~ ~ ~ {equipment:{feet:{id:"minecraft:chainmail_boots",count:1},legs:{id:"minecraft:chainmail_leggings",count:1},chest:{id:"minecraft:chainmail_chestplate",count:1},head:{id:"minecraft:chainmail_helmet",count:1},mainhand:{id:"minecraft:bow",count:1}},Health:36f,attributes:[{id:"minecraft:max_health",base:36}]}

Full chainmail reads visually as frost-rimed armor and nearly doubles effective durability alongside the raised health pool.

Frozen watchman statue

/summon minecraft:stray ~ ~ ~ {NoAI:1b,Silent:1b,PersistenceRequired:1b,CustomName:"Frozen Watchman",CustomNameVisible:1b}

Stands as lore scenery in an icy ruin; because no_ai stops all behavior it will not shoot, wander, or seek shade.

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:stray ~ ~ ~ {ArmorItems:[{id:"minecraft:chainmail_boots",Count:1b},{id:"minecraft:chainmail_leggings",Count:1b},{id:"minecraft:chainmail_chestplate",Count:1b},{id:"minecraft:chainmail_helmet",Count:1b}],HandItems:[{id:"minecraft:bow",Count:1b},{}],Health:36f,Attributes:[{Name:"generic.max_health",Base:36}]}

Java 1.21.4

/summon minecraft:stray ~ ~ ~ {ArmorItems:[{id:"minecraft:chainmail_boots",count:1},{id:"minecraft:chainmail_leggings",count:1},{id:"minecraft:chainmail_chestplate",count:1},{id:"minecraft:chainmail_helmet",count:1}],HandItems:[{id:"minecraft:bow",count:1},{}],Health:36f,attributes:[{id:"minecraft:max_health",base:36}]}

Java 26.2

/summon minecraft:stray ~ ~ ~ {equipment:{feet:{id:"minecraft:chainmail_boots",count:1},legs:{id:"minecraft:chainmail_leggings",count:1},chest:{id:"minecraft:chainmail_chestplate",count:1},head:{id:"minecraft:chainmail_helmet",count:1},mainhand:{id:"minecraft:bow",count:1}},Health:36f,attributes:[{id:"minecraft:max_health",base:36}]}

Bedrock 26.x

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

Worth knowing

  • Every arrow a stray fires is tipped with Slowness, and player kills can add an arrow of Slowness to the usual bone-and-arrow drops.
  • Open sky at dawn sets an unprotected stray on fire; head gear or the fire_immune trait keeps snowfield patrols intact through the day cycle.
  • Powder snow is the renewable stray source in vanilla: ordinary skeletons that freeze through convert into strays where they stand.
  • Natural stray spawns require sky access in cold biomes such as snowy plains, ice spikes, and frozen oceans, which is why cave skeletons in those biomes stay ordinary.

FAQ

What arrows does a stray shoot?

Arrows of Slowness, always, with no offhand setup required. The debuff slows targets on every hit, which is the whole reason to pick a stray over a plain skeleton.

Can a stray wear armor through commands?

Yes, all four slots render on the model. Chainmail and iron suit the frozen aesthetic, and any helmet has the bonus of blocking daylight burn.

How do I keep a stray alive outdoors during the day?

Either occupy the helmet slot or enable fire_immune. Without one of those, sunrise sets it alight and the encounter burns away before players show up.