Classes:SpiderMastermind

From ZDoom Wiki

Jump to: navigation, search
Spider Mastermind
Actor type Monster Game Image:MiniDoomLogoIcon.png
DoomEd Number 7 Class Name SpiderMastermind
Spawn ID 7 Identifier T_SPIDERMASTERMIND

Classes: SpiderMastermind


The Spider Mastermind (a.k.a. the Spiderdemon) is the endboss of Doom. Although with 3000 HPs, she (yes, that demon is a she) doesn't have as much health as the Cyberdemon... but her weapon of choice is the super-chaingun (which is more lethal than your own chaingun), making her a particularly dangerous foe at close range.


DECORATE definition

actor SpiderMastermind 7
{
  spawnid 7
  obituary "%o stood in awe of the spider demon."
  health 3000
  radius 128
  height 100
  mass 1000
  speed 12
  painchance 40
  seesound "spider/sight"
  attacksound "spider/attack"
  painsound "spider/pain"
  deathsound "spider/death" 
  activesound "spider/active"
  MONSTER
  +BOSS
  +FLOORCLIP
  +NORADIUSDMG
  +DONTMORPH
  +MISSILEMORE
  states
  {
  Spawn:
    SPID AB 10 A_Look
    loop
  See:
    SPID A 3 A_Metal
    SPID ABB 3 A_Chase
    SPID C 3 A_Metal
    SPID CDD 3 A_Chase
    SPID E 3 A_Metal
    SPID EFF 3 A_Chase
    loop
  Missile:
    SPID A 20 bright A_FaceTarget
    SPID GH 4 bright A_SPosAttack
    SPID H 1 bright A_SpidRefire
    goto Missile+1
  Pain:
    SPID I 3
    SPID I 3 A_Pain
    goto See
  Death:
    SPID J 20 A_Scream
    SPID K 10 A_NoBlocking
    SPID LMNOPQR 10
    SPID S 30
    SPID S -1 A_BossDeath
    stop
  }
}
Personal tools