raze/wadsrc/static/zscript/games/duke/actors/boss2.zs
Christoph Oelckers 30d066cee9 - added script exports for Duke's bosses.
This allows removing a few hack checks.
2023-04-02 13:13:45 +02:00

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";
}
}