Classes:HellKnight

From ZDoom Wiki
Jump to: navigation, 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.
Hell Knight
Actor type Monster Game
DoomEd Number 69 Class Name HellKnight
Spawn ID 113 Identifier T_HELLKNIGHT


Classes: BaronOfHellHellKnight
 →StealthHellKnight


Hell Knights are a satyr-like monster similar to the Baron of Hell. Like the Baron, their primary attack is a green fireball. However, they only have half as much health as their big brothers.

DECORATE definition

actor HellKnight : BaronOfHell 69
{
  spawnid 113
  obituary "%o was splayed by a Hell Knight."
  hitobituary "%o was gutted by a Hell Knight."
  health 500
  -BOSSDEATH
  radius 24
  height 64
  mass 1000
  speed 8
  painchance 50
  seesound "knight/sight"
  painsound "knight/pain"
  deathsound "knight/death"
  activesound "knight/active"
  MONSTER
  +FLOORCLIP
  states
  {
  Spawn:
    BOS2 AB 10 A_Look
    loop
  See:
    BOS2 AABBCCDD 3 A_Chase
    loop
  Melee:
  Missile:
    BOS2 EF 8 A_FaceTarget
    BOS2 G 8 A_BruisAttack  // See BaronBall
    goto See
  Pain:
    BOS2 H 2
    BOS2 H 2 A_Pain
    goto See
  Death:
    BOS2 I 8
    BOS2 J 8 A_Scream
    BOS2 K 8
    BOS2 L 8 A_NoBlocking
    BOS2 MN 8
    BOS2 O -1 A_BossDeath
    stop
  Raise:
    BOS2 ONMLKJI 8
    goto See
  }
}
Personal tools
Namespaces
Variants
Actions
Navigation
ACS
DECORATE
ZDoom mods
Toolbox