mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 13:01:42 +00:00
21 lines
289 B
Text
21 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();
|
||
|
}
|
||
|
|
||
|
}
|