A_FatAttack1

From ZDoom Wiki
(Redirected from A FatAttack3)
Jump to navigation Jump to search
DoomWiki.org
For more information on this article, visit the A_FatAttack1, A_FatAttack2 and A_FatAttack3 pages on the Doom Wiki.

A_FatAttack1 [(string spawntype)]

A_FatAttack2 [(string spawntype)]

A_FatAttack3 [(string spawntype)]


The 3 attack stages of Doom's Mancubus. Each one shoots 2 missiles of the specified type in different directions. If no type is specified it will use FatShot (the regular Mancubus missile.)

A_FatAttack1 will shoot one shot straight ahead, and the second 11.25 degrees to its left.

A_FatAttack2 will shoot one shot straight ahead, and the second 11.25 degrees to its right.

A_FatAttack3 will shoot two shots, one 5.625 degrees to the left, and the other 5.625 degrees to the right.

Examples

This is the Mancubus' Missile state:

  Missile:
    FATT G 20 A_FatRaise
    FATT H 10 bright A_FatAttack1  // See FatShot
    FATT IG 5 A_FaceTarget
    FATT H 10 bright A_FatAttack2
    FATT IG 5 A_FaceTarget
    FATT H 10 bright A_FatAttack3
    FATT IG 5 A_FaceTarget
    goto See