raze/wadsrc/static/zscript/games/duke/actors/boss3.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
No EOL
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";
}
}