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

27 lines
294 B
Text
Raw Normal View History

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