raze/wadsrc/static/zscript/games/duke/actors/dukeenemies/pigcop.zs
2023-04-23 12:15:36 +02:00

56 lines
808 B
Text

class DukePigCop : DukeActor
{
const PIGCOPSTRENGTH = 100;
default
{
pic "PIGCOP";
+INTERNAL_BADGUY;
+KILLCOUNT;
+GREENSLIMEFOOD;
Strength PIGCOPSTRENGTH;
}
override void PlayFTASound()
{
self.PlayActorSound("PIG_RECOG");
}
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
class DukePigCopStayput: DukePigCop
{
default
{
pic "PIGCOPSTAYPUT";
+BADGUYSTAYPUT;
}
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
class DukePigCopDive : DukePigCopStayput
{
default
{
pic "PIGCOPDIVE";
}
override void PlayFTASound()
{
}
}