ACTOR HazmatZombie
{
  Game Doom
  obituary "%o was electrocuted by a zombie scientist."
  health 20
  mass 90
  speed 8
  Radius 20
  Height 52
  painchance 200
  seesound "grunt/sight"
  painsound "grunt/pain"
  deathsound "grunt/death"
  activesound "grunt/active"
  attacksound "hazmat/tazer"
  MONSTER
  +FLOORCLIP
  States
  {
   Spawn:
    HMZP AB 10 A_Look
    loop
  See:
    HMZP AABBCCDD 4 A_Chase
    loop
  Melee:
    HMZP E 4 A_FaceTarget
    HMZP F 4 Bright A_CustomMeleeAttack (random (2, 12) *3)
    HMZP E 4
    goto See
  Pain:
    HMZP G 3
    HMZP G 3 A_Pain
    goto See
  Death:
    HMZP H 5
    HMZP I 5 A_Scream
    HMZP J 5 A_NoBlocking
    HMZP K 5
    HMZP L -1
    stop
  XDeath:
    HMZP M 5
    HMZP N 5 A_XScream
    HMZP O 5 A_NoBlocking
    HMZP PQRST 5
    HMZP U -1
    stop
  Raise:
    HMZP LKJIH 5
    goto See
  }
}
