2022-12-14 14:28:03 +00:00
|
|
|
class DukeOctabrain : DukeActor
|
|
|
|
{
|
|
|
|
default
|
|
|
|
{
|
|
|
|
pic "OCTABRAIN";
|
2022-12-19 21:40:16 +00:00
|
|
|
+INTERNAL_BADGUY;
|
|
|
|
+KILLCOUNT;
|
2022-12-16 11:47:30 +00:00
|
|
|
+NOWATERDIP;
|
2022-12-21 15:31:51 +00:00
|
|
|
falladjustz 0;
|
2022-12-14 14:28:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
override void PlayFTASound()
|
|
|
|
{
|
|
|
|
self.PlayActorSound("OCTA_RECOG");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class DukeOctabrainStayput: DukeOctabrain
|
|
|
|
{
|
|
|
|
default
|
|
|
|
{
|
|
|
|
pic "OCTABRAINSTAYPUT";
|
2022-12-16 11:47:30 +00:00
|
|
|
+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.
|
|
|
|
}
|
|
|
|
}
|