Skip to main content
Everything in the Effects section, stitched into one complete boss. This page builds the Toast King step by step: a two-phase boss with a telegraphed AoE, an enrage at half health, minions and rewards.

Step 1: The mob

Start with the body: model, base entity and stats.
/nme reload, /nme spawn toast_king. It exists, it hits hard, it does nothing interesting yet.

Step 2: An entrance

Spawn and death moments use @world so everyone knows what’s happening.

Step 3: The signature attack

A telegraphed shockwave as a local effect, driven by a repeat. Warn wide, hit narrow, with a delay between the two.
Every 3 seconds: flame ring and a bell, half a second to get out, then the blast.

Step 4: The enrage

A phase flip at half health, guarded by a variable so it only fires once. health comes from the condition language.
Without the var.phase != 2 guard, the enrage would re-fire on every hit below half health, summoning minions forever.

Step 5: The payoff

Reward the killer directly, drop contested loot for everyone else.

The full file

One file, one boss. The only external piece is toast_minion, a second mob for the summons: any simple mob entry works.

Ideas to build on

  • Make the shockwave faster in phase 2: stop quake in enrage and start a new repeat with every=1.5s.
  • Add a rare drop with if{cond=random < 0.1;then=rare_drop} on death.
  • Give the enrage a particle equation aura so the phase is visible from across the arena.