Classes:CommanderKeen

From ZDoom Wiki
Jump to navigation Jump to search
Note: Wait! Stop! Before you copy this actor's definition into your mod, remember the following things:
  1. You do not need to copy that actor, since it is already defined.
  2. In fact, it's not just useless, it's actually harmful as it can cause problems.
  3. If you want to modify it, or use a modified version, using inheritance is the way to go.
  4. The actor definitions here are put on the wiki for reference purpose only. Learn from them, don't copy them.
  5. There is only one exception: if what you want is changing Ammo capacity, you need to create a new type from Ammo.
Commander Keen
Actor type Monster Game MiniDoom2LogoIcon.png (Doom2)
DoomEd Number 72 Class Name CommanderKeen


Classes: CommanderKeen

A character from the Commander Keen series, he just hangs from the ceiling and doesn't do anything. When all Keens present on a level are killed, any door tagged 666 is opened.


DECORATE definition

ACTOR CommanderKeen
{
  Health 100
  Radius 16
  Height 72
  Mass 10000000
  PainChance 256
  +SOLID
  +SPAWNCEILING
  +NOGRAVITY
  +SHOOTABLE
  +COUNTKILL
  +NOICEDEATH
  +ISMONSTER
  PainSound "keen/pain"
  DeathSound "keen/death"
  States
  {
  Spawn:
    KEEN A -1
    Loop
  Death:
    KEEN AB 6
    KEEN C 6 A_Scream
    KEEN DEFGH	6
    KEEN I 6
    KEEN J 6
    KEEN K 6 A_KeenDie
    KEEN L -1
    Stop
  Pain:
    KEEN M 4
    KEEN M 8 A_Pain
    Goto Spawn
  }
}