mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-28 06:53:29 +00:00
18 lines
275 B
Text
18 lines
275 B
Text
|
class RedneckCheerleaderB : DukeActor
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
pic "CHEERB";
|
||
|
+INTERNAL_BADGUY;
|
||
|
+KILLCOUNT;
|
||
|
+LOOKALLAROUND;
|
||
|
watermovefactor 0.5;
|
||
|
gravityfactor 0.25;
|
||
|
Strength 150;
|
||
|
}
|
||
|
override void Initialize()
|
||
|
{
|
||
|
self.scale = (0.4375, 0.34375);
|
||
|
self.clipdist = 18;
|
||
|
}
|
||
|
}
|