mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-28 06:53:29 +00:00
7b034b5eab
The generic code is not ready yet so it has to be done manually.
33 lines
422 B
Text
33 lines
422 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";
|
|
}
|
|
|
|
override void initialize()
|
|
{
|
|
super.initialize();
|
|
self.actorstayput = self.sector; // make this a flag once everything has been exported.
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|