Wolfenstein 3D Wiki
Advertisement

The Bat is a graphic swap of the Mutant used in the Spear of Destiny Mission Pack levels.

Lore[]

The Bat is a giant mutated bat created by Professor Quarkblitz to serve as soldiers for the Third Reich.

Tactics[]

See the Mutant's tactics, as the Bat is identical in behavior to the Mutant.

ECWolf DECORATE Definition[]

actor GunBat : Mutant 96
{
    attacksound "bat/attack"
    deathsound "bat/death"
    secretdeathsound "bat/crash"
    dropitem "BlueClip"
    states
    {
        Spawn:
            GBAT A -1 NOP A_Look
            stop
        Path:
            GBAT B 10 NOP A_Chase
            GBAT B 2.5
            GBAT C 7.5 NOP A_Chase
            GBAT D 10 NOP A_Chase
            GBAT D 2.5
            GBAT E 7.5 NOP A_Chase
            loop
        Pain:
            GBAT J 5 A_JumpIf(health & 1, 1)
            goto See
            GBAT K 5
            goto See
        See:
            GBAT B 5 NOP A_Chase
            GBAT B 1.5
            GBAT C 4 NOP A_Chase
            GBAT D 5 NOP A_Chase
            GBAT D 1.5
            GBAT E 4 NOP A_Chase
            loop
        Missile:
            GBAT F 3 A_FaceTarget
            GBAT G 10 bright A_WolfAttack
            GBAT H 5 A_FaceTarget
            GBAT I 10 bright A_WolfAttack
            goto See
        Death:
            GBAT L 3.5 A_Fall
            GBAT M 3.5 A_Scream
            GBAT NO 3.5
            GBAT P -1
            stop
    }
}
Advertisement