raze/wadsrc/static/zscript/games/duke/actors/dukeenemies/rotategun.zs

30 lines
424 B
Text
Raw Normal View History

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