Classes:Trans

From ECWolf Wiki
Revision as of 14:35, 20 February 2013 by Blzut3 (talk | contribs) (Created page with "{{Actor| | type = Monster | name = Trans Grosse | class = Trans | game = Spear | doomednum = 23 }}Classes: {{Class|Actor}} → {{Class|WolfensteinMonster}} → <u>Tr...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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.
Trans Grosse
Actor type Monster Game MiniSpearLogoIcon.png
DoomEd Number 23 Class Name Trans


Classes: ActorWolfensteinMonsterTrans
 →SubmarineWilly

Overview

Boss at the end of the tunnels in Spear of Destiny.

DECORATE Definition

actor Trans : WolfensteinMonster 23
{
  Points 5000
  Health 850, 950, 1050, 1200
  Speed 1, 3
  SeeSound "trans/sight"
  DeathSound "trans/death"
  AttackSound "trans/attack"
  DropItem "GoldKey"
  +AMBUSH
  states
  {
    Spawn:
      TRNS A -1 NOP A_Look(0, 0, 0, 0, 360)
      stop
    See:
      TRNS A 5 NOP A_Chase
      TRNS A 1.5
      TRNS B 4 NOP A_Chase
      TRNS C 5 NOP A_Chase
      TRNS C 1.5
      TRNS D 4 NOP A_Chase
      loop
    Missile:
      TRNS E 15 A_FaceTarget
      TRNS F 5 bright A_FaceTarget
      TRNS GFGFGE 5 bright A_WolfAttack
      goto See
    Death:
      TRNS A .5 A_Fall
      TRNS A 52.5 A_Scream
      TRNS HIJ 7.5
      TRNS K -1
      stop
  }
}