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

17 lines
No EOL
238 B
Text

class RedneckMakeout : DukeActor
{
default
{
pic "MAKEOUT";
+INTERNAL_BADGUY;
//+KILLCOUNT;
+LOOKALLAROUND;
Strength 150;
}
override void Initialize()
{
self.scale = (0.40625, 0.40625);
self.setClipDistFromTile();
}
}