mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-28 06:53:29 +00:00
eef2bcf515
# Conflicts: # wadsrc/static/zscript/games/duke/actors/redneckenemies.zs
19 lines
No EOL
270 B
Text
19 lines
No EOL
270 B
Text
class RedneckBikerB : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "BIKERB";
|
|
+INTERNAL_BADGUY;
|
|
+KILLCOUNT;
|
|
+LOOKALLAROUND;
|
|
watermovefactor 0.5;
|
|
gravityfactor 0.25;
|
|
Strength 300;
|
|
}
|
|
override void Initialize()
|
|
{
|
|
self.scale = (0.4375, 0.34375);
|
|
self.clipdist = 18;
|
|
}
|
|
|
|
} |