mirror of
https://github.com/ZDoom/Raze.git
synced 2025-03-01 14:41:00 +00:00
24 lines
272 B
Text
24 lines
272 B
Text
class DukeBoss2 : DukeBoss1
|
|
{
|
|
default
|
|
{
|
|
pic "BOSS2";
|
|
}
|
|
|
|
override void PlayFTASound()
|
|
{
|
|
if (self.pal == 1)
|
|
Duke.PlaySound("BOS2_RECOG");
|
|
else Duke.PlaySound("WHIPYOURASS");
|
|
}
|
|
}
|
|
|
|
|
|
class DukeBoss2Stayput : DukeBoss2
|
|
{
|
|
default
|
|
{
|
|
pic "BOSS2STAYPUT";
|
|
}
|
|
}
|
|
|