Classes:EntityPod

From ZDoom Wiki
Jump to navigation Jump to search
Note: Wait! Stop! You do not need to copy this actor's code into your project! Here's why:
  1. This actor is already defined in GZDoom, there's no reason to define it again.
  2. In fact, trying to define an actor with the same name will cause an error (because it already exists).
  3. If you want to make your own version of this actor, use inheritance.
  4. Definitions for existing actors are put on the wiki for reference purpose only.
Entity pod
Actor type Map spot Game MiniStrifeLogoIcon.png (Strife)
DoomEd Number 198 Class Name EntityPod
Conversation ID 77 Puzzle Item ID N/A


Classes: EntityPod

A strange big green egg that breaks and releases the Entity to fight you.

DECORATE definition

ACTOR EntityPod
{
  Radius 25
  Height 91
  +SOLID
  +NOTDMATCH
  SeeSound "misc/gibbed"

  action native A_SpawnEntity();

  States
  {
  Spawn:
    PODD A 60 A_Look
    Loop
  See:
    PODD A 360
    PODD B 9 A_NoBlocking
    PODD C 9
    PODD D 9 A_SpawnEntity
    PODD E -1
    Stop
  }
}