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

36 lines
440 B
Text
Raw Normal View History

2022-12-14 14:28:03 +00:00
class DukeOctabrain : DukeActor
{
const OCTASTRENGTH = 175;
const OCTASCRATCHINGPLAYER = -11;
2022-12-14 14:28:03 +00:00
default
{
pic "OCTABRAIN";
Strength OCTASTRENGTH;
+INTERNAL_BADGUY;
+KILLCOUNT;
+NOWATERDIP;
falladjustz 0;
2022-12-14 14:28:03 +00:00
}
override void PlayFTASound(int mode)
2022-12-14 14:28:03 +00:00
{
self.PlayActorSound("OCTA_RECOG");
}
2022-12-14 14:28:03 +00:00
}
class DukeOctabrainStayput: DukeOctabrain
{
default
{
pic "OCTABRAINSTAYPUT";
+DONTDIVEALIVE;
+BADGUYSTAYPUT;
2022-12-14 14:28:03 +00:00
}
2022-12-14 14:28:03 +00:00
}