Classes:TheAxe

From ECWolf Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
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.
Major Hans "The Axe" von Schlieffen
Actor type Monster Game MiniSpearLogoIcon.png
DoomEd Number 101 Class Name TheAxe


Classes: ActorWolfensteinMonsterUberMutantTheAxe

Overview

Replacement for the Ubermutant in the Spear of Destiny mission packs.

DECORATE Definition

actor TheAxe : UberMutant 101
{
  DeathSound "theaxe/death"
  AttackSound "theaxe/attack"
  DropItem "YellowKey"
  states
  {
    Spawn:
      MAXE A -1 NOP A_Look(0, 0, 0, 0, 360)
      stop
    See:
      MAXE A 5 NOP A_Chase
      MAXE A 1.5
      MAXE B 4 NOP A_Chase
      MAXE C 5 NOP A_Chase
      MAXE C 1.5
      MAXE D 4 NOP A_Chase
      loop
    Missile:
      MAXE E 15 A_FaceTarget
      MAXE F 6 bright A_FaceTarget
      MAXE G 0 bright A_MeleeAttack(10, 1.0)
      MAXE G 6 bright A_WolfAttack
      MAXE H 0 bright A_MeleeAttack(10, 1.0)
      MAXE H 6 bright A_WolfAttack
      MAXE G 0 bright A_MeleeAttack(10, 1.0)
      MAXE G 6 bright A_WolfAttack
      MAXE F 0 bright A_MeleeAttack(10, 1.0)
      MAXE F 6 bright A_WolfAttack
      MAXE E 0 A_MeleeAttack(10, 1.0)
      MAXE E 6 A_WolfAttack
      goto See
    Death:
      MAXE A .5 A_Fall
      MAXE A 35 A_Scream
      MAXE IJKL 7.5
      MAXE M -1
      stop
  }
}