raze/wadsrc/static/zscript/games/duke/actors/rrraenemies/bikerbv2.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

20 lines
294 B
Text

class RedneckBikerBV2 : DukeActor
{
default
{
pic "BIKERBV2";
+INTERNAL_BADGUY;
+KILLCOUNT;
+LOOKALLAROUND;
watermovefactor 0.5;
gravityfactor 0.125;
Strength 200;
}
override void Initialize(DukeActor spawner)
{
self.scale = (0.4375, 0.34375);
self.clipdist = 18;
}
}