raze/wadsrc/static/zscript/games/duke/actors/boss4.zs

35 lines
446 B
Text
Raw Normal View History

class DukeBoss4 : DukeBoss1
{
default
{
pic "BOSS4";
-ALTHITSCANDIRECTION;
}
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.
}
}