mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-28 15:02:24 +00:00
35 lines
432 B
Text
35 lines
432 B
Text
class DukeOctabrain : DukeActor
|
|
{
|
|
const OCTASTRENGTH = 175;
|
|
const OCTASCRATCHINGPLAYER = -11;
|
|
|
|
default
|
|
{
|
|
pic "OCTABRAIN";
|
|
Strength OCTASTRENGTH;
|
|
+INTERNAL_BADGUY;
|
|
+KILLCOUNT;
|
|
+NOWATERDIP;
|
|
falladjustz 0;
|
|
|
|
}
|
|
|
|
override void PlayFTASound()
|
|
{
|
|
self.PlayActorSound("OCTA_RECOG");
|
|
}
|
|
|
|
}
|
|
|
|
class DukeOctabrainStayput: DukeOctabrain
|
|
{
|
|
default
|
|
{
|
|
pic "OCTABRAINSTAYPUT";
|
|
+DONTDIVEALIVE;
|
|
+BADGUYSTAYPUT;
|
|
}
|
|
|
|
|
|
}
|
|
|