mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-02 17:12:11 +00:00
27 lines
272 B
Text
27 lines
272 B
Text
|
class DukeBoss4 : DukeBoss1
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
pic "BOSS4";
|
||
|
}
|
||
|
|
||
|
override void PlayFTASound()
|
||
|
{
|
||
|
if (self.pal == 1)
|
||
|
Duke.PlaySound("BOS4_RECOG");
|
||
|
Duke.PlaySound("BOSS4_FIRSTSEE");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
class DukeBoss4Stayput : DukeBoss4
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
pic "BOSS4STAYPUT";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|