raze/wadsrc/static/zscript/games/duke/actors/rrraenemies/bikerb.zs
Christoph Oelckers eef2bcf515 - moved all RRRA enemies to a subfolder.
# Conflicts:
#	wadsrc/static/zscript/games/duke/actors/redneckenemies.zs
2023-04-23 17:25:44 +02:00

19 lines
No EOL
270 B
Text

class RedneckBikerB : DukeActor
{
default
{
pic "BIKERB";
+INTERNAL_BADGUY;
+KILLCOUNT;
+LOOKALLAROUND;
watermovefactor 0.5;
gravityfactor 0.25;
Strength 300;
}
override void Initialize()
{
self.scale = (0.4375, 0.34375);
self.clipdist = 18;
}
}