Classes:LostSoul

From ZDoom Wiki

Jump to: navigation, search
Lost Soul
Actor type Monster Game
DoomEd Number 3006 Class Name LostSoul
Spawn ID 110 Identifier T_LOSTSOUL

Classes: LostSoul

 →DeadLostSoul


Lost Souls have about as much health as an Imp, but they don't shoot fireballs. They fly around and then charge at you for a big bite. These can really be a pain if there's lots of them flying around. Also, Pain Elementals love to shoot them out of their huge mouths.


DECORATE definition

actor LostSoul 3006
{
  spawnid 110
  obituary "%o was spooked by a lost soul."
  health 100
  radius 16
  height 56
  mass 50
  speed 8
  damage 3
  painchance 256
  renderstyle SoulTrans
  attacksound "skull/melee"
  painsound "skull/pain"
  deathsound "skull/death"
  activesound "skull/active"
  MONSTER
  +FLOAT
  +NOGRAVITY
  +NOICEDEATH
  +MISSILEMORE
  +DONTFALL
  states
  {
  Spawn:
    SKUL AB 10 bright A_Look
    loop
  See:
    SKUL AB 6 bright A_Chase
    loop
  Missile:
    SKUL C 10 bright A_FaceTarget
    SKUL D 4 bright A_SkullAttack
    SKUL CD 4 bright
    goto Missile+2
  Pain:
    SKUL E 3 bright
    SKUL E 3 bright A_Pain
    goto See
  Death:
    SKUL F 6 bright
    SKUL G 6 bright A_Scream
    SKUL H 6 bright
    SKUL I 6 bright A_NoBlocking
    SKUL JK 6
    stop
  }
}
Personal tools