mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-02 09:02:18 +00:00
27 lines
371 B
Text
27 lines
371 B
Text
class DukeDrone : DukeActor
|
|
{
|
|
const DRONESTRENGTH = 150;
|
|
|
|
default
|
|
{
|
|
pic "DRONE";
|
|
Strength DRONESTRENGTH;
|
|
+INTERNAL_BADGUY;
|
|
+KILLCOUNT;
|
|
+NOWATERDIP;
|
|
+FLOATING;
|
|
+QUICKALTERANG;
|
|
+NOJIBS;
|
|
+NOHITJIBS;
|
|
falladjustz 0;
|
|
floating_floordist 30;
|
|
floating_ceilingdist 50;
|
|
|
|
}
|
|
|
|
override void PlayFTASound()
|
|
{
|
|
self.PlayActorSound("DRON_RECOG");
|
|
}
|
|
|
|
}
|