Classes:BaronOfHell

From ZDoom Wiki

(Redirected from Baron of Hell)
Jump to: navigation, search
Baron of Hell
Actor type Monster Game
DoomEd Number 3003 Class Name BaronOfHell
Spawn ID 3 Identifier T_BARON


Classes: BaronOfHell
 →HellKnight
  →StealthHellKnight
 →StealthBaron


The Baron of Hell is akin to the Hell Knight, but has twice as much health. A pair of Barons serve as the endbosses for the first episode of Doom before becoming a far more common foe later on in the series.


DECORATE definition

actor BaronOfHell 3003
{
  spawnid 3
  obituary "%o was bruised by a Baron of Hell."
  hitobituary "%o was ripped open by a Baron of Hell."
  health 1000
  radius 24
  height 64
  mass 1000
  speed 8
  painchance 50
  seesound "baron/sight"
  painsound "baron/pain"
  deathsound "baron/death"
  activesound "baron/active"
  MONSTER
  +FLOORCLIP
  +BOSSDEATH
  states
  {
  Spawn:
    BOSS AB 10 A_Look
    loop
  See:
    BOSS AABBCCDD 3 A_Chase
    loop
  Melee:
  Missile:
    BOSS EF 8 A_FaceTarget
    BOSS G 8 A_BruisAttack  // See BaronBall
    goto See
  Pain:
    BOSS H 2
    BOSS H 2 A_Pain
    goto See
  Death:
    BOSS I 8
    BOSS J 8 A_Scream
    BOSS K 8
    BOSS L 8 A_NoBlocking
    BOSS MN 8
    BOSS O -1 A_BossDeath
    stop
  Raise:
    BOSS ONMLKJI 8
    goto See
  }
}
Personal tools