mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-28 06:53:29 +00:00
20 lines
284 B
Text
20 lines
284 B
Text
|
class RedneckCheerBoat : DukeActor
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
pic "CHEERBOAT";
|
||
|
+INTERNAL_BADGUY;
|
||
|
+KILLCOUNT;
|
||
|
+LOOKALLAROUND;
|
||
|
+DONTDIVE;
|
||
|
falladjustz 6;
|
||
|
landmovefactor 0.5;
|
||
|
Strength 200;
|
||
|
}
|
||
|
override void Initialize()
|
||
|
{
|
||
|
self.scale = (0.5, 0.5);
|
||
|
self.setClipDistFromTile();
|
||
|
}
|
||
|
}
|