Blaze icon

Blaze Summon Command Generator

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

Blazes are the ranged artillery of the Nether: airborne, fire-immune, and armed with three-shot fireball volleys that ignite whatever they hit. In fortress-style maps they work as spawner-room threats, bridge defenders, and mid-tier bosses that punish players who stand still.

The generator builds a /summon blaze command with an optional name, health override, riders, and traits. Persistent keeps a hand-placed blaze from despawning before players reach the room, silent cuts the breathing rasp for stealth sections, and glowing marks priority targets through fortress walls.

Two design constraints shape every blaze encounter. First, water is lethal to them: rain, splash bottles, and even snowballs chip them down, so open-sky Overworld arenas need cover. Second, NoAI removes their attack routine entirely, so a decorative blaze cannot double as a working turret.

Example commands

Fortress corridor guard

/summon minecraft:blaze ~ ~ ~ {PersistenceRequired:1b,Silent:1b}

Persistence holds the guard at its post through chunk reloads, and removing the idle rasp keeps its ambush unspoiled.

Miniboss with visible name

/summon minecraft:blaze ~ ~ ~ {PersistenceRequired:1b,Glowing:1b,CustomName:"The Rodkeeper",CustomNameVisible:1b,Health:60f,attributes:[{id:"minecraft:max_health",base:60}]}

Tripling the 20-point default health turns a three-hit kill into a sustained duel, and the outline keeps the boss readable through smoke and fire particles.

Museum display blaze

/summon minecraft:blaze ~ ~ ~ {NoAI:1b,Silent:1b,Invulnerable:1b}

With AI off it fires no volleys and ignores players, which makes a safe exhibit piece behind glass.

Ghast gunship rider

/summon minecraft:ghast ~ ~ ~ {Passengers:[{id:"minecraft:blaze"}]}

The ghast provides the flying platform and explosive shots while its blaze passenger adds rapid incendiary volleys for Nether sky arenas.

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:blaze ~ ~ ~ {PersistenceRequired:1b,Glowing:1b,CustomName:'{"text":"The Rodkeeper"}',CustomNameVisible:1b,Health:60f,Attributes:[{Name:"generic.max_health",Base:60}]}

Java 1.21.4

/summon minecraft:blaze ~ ~ ~ {PersistenceRequired:1b,Glowing:1b,CustomName:'{"text":"The Rodkeeper"}',CustomNameVisible:1b,Health:60f,attributes:[{id:"minecraft:max_health",base:60}]}

Java 26.2

/summon minecraft:blaze ~ ~ ~ {PersistenceRequired:1b,Glowing:1b,CustomName:"The Rodkeeper",CustomNameVisible:1b,Health:60f,attributes:[{id:"minecraft:max_health",base:60}]}

Bedrock 26.x

/summon minecraft:blaze "The Rodkeeper" ~ ~ ~
  • Bedrock /summon does not accept Java entity NBT; omitted Health/Attributes, traits (persistent, glowing, custom_name_visible).

Worth knowing

  • A blaze attacks in volleys of three fireballs with a short recharge between bursts; the shots ignite targets but never break blocks.
  • Snowballs deal 3 damage each to blazes, and rain or splash water bottles also hurt them, making them fragile outside covered spaces.
  • Blaze rods only drop when a player or a tamed wolf lands the kill, so farm designs route the final hit through the player.
  • Fire and lava cannot harm a blaze, so the fire_immune trait changes nothing on this mob and can be left off.
  • Blazes rise into the air and catch fire visually when preparing to shoot, a wind-up cue players can learn to dodge.

FAQ

Why does my blaze stop shooting after I add no_ai?

NoAI disables the targeting and attack routines along with movement, so a NoAI blaze is scenery only. Keep AI on and use persistent plus a health override for a functional turret-style encounter.

Can a blaze fight in an Overworld arena?

Yes, but keep it under a roof: rain damages blazes continuously and a thunderstorm can end the fight before players do. Indoor or cave arenas avoid the problem entirely.

How much health should a blaze boss get?

The default is 20 points, which experienced players burn through in seconds. Values between 60 and 100 keep the volley pattern threatening without dragging the fight.