Classes:PainElemental

From ZDoom Wiki

Jump to: navigation, search
Pain Elemental
Actor type Monster Game
DoomEd Number 71 Class Name PainElemental
Spawn ID 115 Identifier T_PAINELEMENTAL

Classes: PainElemental


Pain Elementals are similar in appearance to cacodemons, but are brown. The Pain Elemental is unique in that it doesn't have an attack of its own, rather it spawns Lost Souls to do its bidding for them. Note that when a Pain Elemental dies 3 Lost Souls spawn to replace it.


DECORATE definition

actor PainElemental 71
{
  spawnid 115
  health 400
  radius 31
  height 56
  mass 400
  speed 8
  painchance 128
  seesound "pain/sight"
  painsound "pain/pain"
  deathsound "pain/death"
  activesound "pain/active"
  MONSTER
  +FLOAT
  +NOGRAVITY
  states
  {
  Spawn:
    PAIN A 10 A_Look
    loop
  See:
    PAIN AABBCC 3 A_Chase
    loop
  Missile:
    PAIN DE 5 A_FaceTarget
    PAIN F 5 bright A_FaceTarget
    PAIN F 0 bright A_PainAttack    // See LostSoul
    goto See
  Pain:
    PAIN G 6
    PAIN G 6 A_Pain
    goto See
  Death:
    PAIN H 8 bright
    PAIN I 8 bright A_Scream
    PAIN JK 8 bright
    PAIN L 8 bright A_PainDie       // See LostSoul
    PAIN M 8 bright
    stop
  Raise:
    PAIN MLKJIH 8
    goto See
  }
}
Personal tools