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

18 lines
233 B
Text

class RedneckBiker : DukeActor
{
default
{
pic "BIKER";
+INTERNAL_BADGUY;
+KILLCOUNT;
+LOOKALLAROUND;
Strength 150;
}
override void Initialize()
{
self.scale = (0.4375, 0.34375);
self.setClipDistFromTile();
}
}