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

20 lines
286 B
Text

class RedneckHulkBoat : DukeActor
{
default
{
pic "HULKBOAT";
+INTERNAL_BADGUY;
+KILLCOUNT;
+LOOKALLAROUND;
+DONTDIVE;
falladjustz 12;
landmovefactor 0.5;
Strength 300;
}
override void Initialize()
{
self.scale = (0.75, 0.75);
self.setClipDistFromTile();
}
}