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

30 lines
No EOL
407 B
Text

class DukeRotateGun : DukeActor
{
const ROTTURRETSTRENGTH = 40;
default
{
pic "ROTATEGUN";
Strength ROTTURRETSTRENGTH;
+INTERNAL_BADGUY;
+KILLCOUNT;
+NODAMAGEPUSH;
+NORADIUSPUSH;
+SHOOTCENTERED;
+NOVERTICALMOVE;
+MOVE_NOPLAYERINTERACT;
+NOHITJIBS;
+NOSHOTGUNBLOOD;
sparkoffset -8;
aimoffset 32;
shootzoffset 0;
}
override void Initialize()
{
self.vel.Z = 0;
}
}