mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 21:11:26 +00:00
40 lines
No EOL
494 B
Text
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()
|
|
{
|
|
}
|
|
|
|
} |