mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 13:01:42 +00:00
eef2bcf515
# Conflicts: # wadsrc/static/zscript/games/duke/actors/redneckenemies.zs
36 lines
516 B
Text
36 lines
516 B
Text
class RedneckCootplay : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "COOTPLAY";
|
|
+INTERNAL_BADGUY;
|
|
+LOOKALLAROUND;
|
|
+NORADIUSPUSH;
|
|
Strength 10000;
|
|
}
|
|
override void Initialize()
|
|
{
|
|
self.scale = (0.375, 0.28128);
|
|
self.setClipDistFromTile();
|
|
self.clipdist *= 4;
|
|
}
|
|
|
|
}
|
|
|
|
class RedneckBillyPlay : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "BILLYPLAY";
|
|
+INTERNAL_BADGUY;
|
|
+LOOKALLAROUND;
|
|
+NORADIUSPUSH;
|
|
Strength 10000;
|
|
}
|
|
override void Initialize()
|
|
{
|
|
self.scale = (0.390625, 0.328125);
|
|
self.setClipDistFromTile();
|
|
}
|
|
|
|
}
|