raze/wadsrc/static/zscript/games/duke/actors/redneckenemies/shitboss.zs
Christoph Oelckers 513de38723 - pass the spawner to Initialize as an explicit parameter.
Using ownerActor is not robust, for some actors this will have unwanted side effects.
2023-05-19 22:57:26 +02:00

24 lines
No EOL
360 B
Text

class RedneckShitBoss : DukeActor
{
const SBSPITSPD = 16;
const SBDIPSPD = 16;
const SBSNDRND = 64;
const SBSWHACKAMOUNT = -22;
default
{
pic "SBMOVE";
+FULLBRIGHT;
+INTERNAL_BADGUY;
+KILLCOUNT;
+NORADIUSPUSH;
Strength 2500;
}
override void Initialize(DukeActor spawner)
{
self.scale = (0.75, 0.75);
self.setClipDistFromTile();
}
}