raze/wadsrc/static/zscript/games/duke/actors/redneckenemies/billyray.zs
2023-04-23 17:25:43 +02:00

40 lines
No EOL
494 B
Text

class RedneckBillyRay : DukeActor
{
const BILLYRAYSTRENGTH = 100;
default
{
pic "BILLYRAY";
+INTERNAL_BADGUY;
+KILLCOUNT;
Strength BILLYRAYSTRENGTH;
}
override void PlayFTASound()
{
self.PlayActorSound("BR_RECOG");
}
override void Initialize()
{
self.scale = (0.390625, 0.328125);
self.setClipDistFromTile();
}
}
class RedneckBillyRayStayput: RedneckBillyRay
{
default
{
pic "BILLYRAYSTAYPUT";
+BADGUYSTAYPUT
}
override void PlayFTASound()
{
}
}