mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 13:01:42 +00:00
eef2bcf515
# Conflicts: # wadsrc/static/zscript/games/duke/actors/redneckenemies.zs
20 lines
289 B
Text
20 lines
289 B
Text
class RedneckMinionBoat : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "MINIONBOAT";
|
|
+INTERNAL_BADGUY;
|
|
+KILLCOUNT;
|
|
+LOOKALLAROUND;
|
|
+DONTDIVE;
|
|
falladjustz 3;
|
|
landmovefactor 0.5;
|
|
Strength 150;
|
|
}
|
|
override void Initialize()
|
|
{
|
|
self.scale = (0.25, 0.25);
|
|
self.setClipDistFromTile();
|
|
}
|
|
|
|
}
|