Classes:FakeHitler

From ECWolf Wiki
Revision as of 22:40, 16 January 2013 by Hair Machine (talk | contribs) (Created page with "{{Actor| | type = Monster | name = Fake Hitler | class = FakeHitler | game = Wolf3D | doomednum = 18 }}Classes: {{Class}} → {{Class|WolfensteinMonster}} → <u>Fak...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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.
Fake Hitler
Actor type Monster Game MiniWolf3DLogoIcon.png
DoomEd Number 18 Class Name FakeHitler


Classes: ActorWolfensteinMonsterFakeHitler

Overview

The first incarnation of Hitler that is encountered at the end of Episode 3 of Wolfenstein 3d. This version is nothing more than a decoy flown around on wires. It attacks with a chest-mounted flamethrower.

DECORATE Definition

actor FakeHitler: WolfensteinMonster 18
{
  Points 2000
  Health 200, 300, 400, 500
  Speed 1, 3
  DeathSound "fake/death"
  SeeSound "fake/sight"
  +AMBUSH
  states
  {
    Spawn:
      FAKE A -1 NOP A_Look(0, 0, 0, 0, 360)
      stop 
    See:
      FAKE A 5 NOP A_Chase("*", "*", CHF_BACKOFF)
      FAKE A 1.5
      FAKE B 4 NOP A_Chase("*", "*", CHF_BACKOFF)
      FAKE C 5 NOP A_Chase("*", "*", CHF_BACKOFF)
      FAKE C 1.5
      FAKE D 4 NOP A_Chase("*", "*", CHF_BACKOFF)
      loop
    Missile:
      FAKE E 4 bright A_FaceTarget
      FAKE EEEEEEEE 4 bright A_CustomMissile("FireBall")
      goto See
    Death:
      FAKE F 5 A_Fall
      FAKE G 5 A_Scream
      FAKE HIJ 5
      FAKE K -1
      stop
  }
}