mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-29 23:42:08 +00:00
4692cc55f7
Only required 4 new flags plus one property...
28 lines
398 B
Text
28 lines
398 B
Text
class DukeDrone : DukeActor
|
|
{
|
|
const DRONESTRENGTH = 150;
|
|
|
|
default
|
|
{
|
|
pic "DRONE";
|
|
Strength DRONESTRENGTH;
|
|
+INTERNAL_BADGUY;
|
|
+KILLCOUNT;
|
|
+NOWATERDIP;
|
|
+FLOATING;
|
|
+QUICKALTERANG;
|
|
+NOJIBS;
|
|
+NOHITJIBS;
|
|
+NOSHOTGUNBLOOD;
|
|
falladjustz 0;
|
|
floating_floordist 30;
|
|
floating_ceilingdist 50;
|
|
|
|
}
|
|
|
|
override void PlayFTASound(int mode)
|
|
{
|
|
self.PlayActorSound("DRON_RECOG");
|
|
}
|
|
|
|
}
|