raze/wadsrc/static/zscript/games/duke/actors/boss5.zs
Christoph Oelckers 46f7e38e46 - cleaned up movesprite_ex.
This needed 5 actor flags to handle some really inane special cases!
2023-04-23 09:42:27 +02:00

28 lines
337 B
Text

class DukeBoss5 : DukeBoss1
{
default
{
pic "BOSS5";
-ALTHITSCANDIRECTION;
-DONTENTERWATER;
}
}
class DukeBoss5Stayput : DukeBoss5
{
default
{
pic "BOSS5STAYPUT";
}
override void initialize()
{
super.initialize();
self.actorstayput = self.sector; // make this a flag once everything has been exported.
}
}