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

16 lines
205 B
Text

class RedneckRabbit : DukeActor
{
default
{
pic "RABBIT";
+INTERNAL_BADGUY;
+KILLCOUNT;
+LOOKALLAROUND;
Strength 50;
}
override void Initialize()
{
self.scale = (0.28125, 0.28125);
}
}