mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-25 05:21:31 +00:00
24 lines
272 B
Text
24 lines
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";
|
||
|
}
|
||
|
}
|
||
|
|