raze/wadsrc/static/zscript/games/duke/actors/dukeenemies/drone.zs
Christoph Oelckers 4692cc55f7 - cleaned up checkhitdefault
Only required 4 new flags plus one property...
2023-04-23 17:33:36 +02:00

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");
}
}