mirror of
https://github.com/ZDoom/Raze.git
synced 2025-02-18 01:31:11 +00:00
24 lines
No EOL
272 B
Text
24 lines
No EOL
272 B
Text
class DukeBoss3 : DukeBoss1
|
|
{
|
|
default
|
|
{
|
|
pic "BOSS3";
|
|
}
|
|
|
|
override void PlayFTASound()
|
|
{
|
|
if (self.pal == 1)
|
|
Duke.PlaySound("BOS3_RECOG");
|
|
else Duke.PlaySound("RIPHEADNECK");
|
|
}
|
|
}
|
|
|
|
|
|
class DukeBoss3Stayput : DukeBoss3
|
|
{
|
|
default
|
|
{
|
|
pic "BOSS3STAYPUT";
|
|
}
|
|
}
|
|
|