qzdoom/wadsrc/static/actors/hexen/flies.txt
Randy Heit d37f9cbcae Add flies (doomed #112) from the Hexen retail beta
...because it brought back memories of adding Strife support.
- The search function is radically different, but the flying mechanics are
  the same.
2015-04-02 17:52:54 -05:00

28 lines
399 B
Text

// Buzzy fly ----------------------------------------------------------------
ACTOR LittleFly 112
{
Game Hexen
+NOBLOCKMAP +NOGRAVITY
+CANPASS
Speed 6
Radius 5
Height 5
Mass 2
ActiveSound "FlyBuzz"
action native A_FlySearch();
action native A_FlyBuzz();
States
{
Spawn:
TNT1 A 20 A_FlySearch // [RH] Invisible when not flying
Loop
Buzz:
AFLY ABCD 3 A_FlyBuzz
Loop
}
}