mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-02 09:02:18 +00:00
21 lines
277 B
Text
21 lines
277 B
Text
|
|
||
|
class RedneckBikerBV2 : DukeActor
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
pic "BIKERBV2";
|
||
|
+INTERNAL_BADGUY;
|
||
|
+KILLCOUNT;
|
||
|
+LOOKALLAROUND;
|
||
|
watermovefactor 0.5;
|
||
|
gravityfactor 0.125;
|
||
|
Strength 200;
|
||
|
}
|
||
|
override void Initialize()
|
||
|
{
|
||
|
self.scale = (0.4375, 0.34375);
|
||
|
self.clipdist = 18;
|
||
|
}
|
||
|
|
||
|
}
|