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

32 lines
465 B
Text
Raw Normal View History

2022-12-14 14:28:03 +00:00
class DukeOctabrain : DukeActor
{
default
{
pic "OCTABRAIN";
+INTERNAL_BADGUY;
+KILLCOUNT;
+NOWATERDIP;
falladjustz 0;
2022-12-14 14:28:03 +00:00
}
override void PlayFTASound()
{
self.PlayActorSound("OCTA_RECOG");
}
}
class DukeOctabrainStayput: DukeOctabrain
{
default
{
pic "OCTABRAINSTAYPUT";
+DONTDIVEALIVE;
2022-12-14 14:28:03 +00:00
}
override void initialize()
{
super.initialize();
self.actorstayput = self.sector; // make this a flag once everything has been exported.
}
}