Classes:Belphegor

These red and black hell nobles are even stronger and tougher than the Barons of Hell.

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.
Belphegor
Actor type Monster Game
DoomEd Number 5008 Class Name Belphegor
Spawn ID 215 Identifier T_BELPHEGOR
Warning: This class is a Skulltag-specific actor that is not included in ZDoom!


Classes: BaronOfHellHellKnightBelphegor

DECORATE definition

ACTOR Belphegor : HellKnight 5008
{
  SpawnID 215
  Health 1500
  PainChance 25
  SeeSound "baron/sight"
  PainSound "baron/pain"
  DeathSound "baron/death"
  ActiveSound "baron/active"
  Obituary "$OB_BELPHEGOR" // "%o was slain by a Belphegor."
  HitObituary "$OB_BELPHEGOR_MELEE" // "%o was slain by a Belphegor."
  States
  {
  Spawn:
    BOS3 AB 10 A_Look
    Loop
  See:
    BOS3 AABBCCDD 3 A_Chase
    Loop
  Pain:
    BOS3 H 2
    BOS3 H 2 A_Pain
    Goto See
  Melee:
  Missile:
    BOS3 EF 6 A_FaceTarget
    BOS3 G 6 A_BasicAttack (10, "baron/melee", "BelphegorBall", 32)
    BOS3 EF 6 A_FaceTarget
    BOS3 G 6 A_BasicAttack (10, "baron/melee", "BelphegorBall", 32)
    BOS3 EF 6 A_FaceTarget
    BOS3 G 6 A_BasicAttack (10, "baron/melee", "BelphegorBall", 32)
    Goto See
  Death:
    BOS3 I 8
    BOS3 J 8 A_Scream
    BOS3 K 8
    BOS3 L 8 A_NoBlocking
    BOS3 MN 8
    BOS3 O -1 A_BossDeath
    Stop
  Raise:
    BOS3 ONMLKJI 8
    Goto See
  }
}
This article is issued from Zdoom. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.