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

57 lines
824 B
Text
Raw Normal View History

2022-12-12 15:00:39 +00:00
class DukePigCop : DukeActor
{
2022-12-31 08:24:43 +00:00
const PIGCOPSTRENGTH = 100;
2022-12-12 15:00:39 +00:00
default
{
pic "PIGCOP";
+INTERNAL_BADGUY;
+KILLCOUNT;
+GREENSLIMEFOOD;
2022-12-31 08:24:43 +00:00
Strength PIGCOPSTRENGTH;
2022-12-12 15:00:39 +00:00
}
override void PlayFTASound(int mode)
2022-12-12 15:00:39 +00:00
{
self.PlayActorSound("PIG_RECOG");
}
2022-12-31 08:24:43 +00:00
2022-12-12 15:00:39 +00:00
}
2022-12-31 08:24:43 +00:00
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
2022-12-12 15:00:39 +00:00
class DukePigCopStayput: DukePigCop
{
default
{
pic "PIGCOPSTAYPUT";
+BADGUYSTAYPUT;
2022-12-12 15:00:39 +00:00
}
}
2022-12-31 08:24:43 +00:00
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
2022-12-12 15:00:39 +00:00
class DukePigCopDive : DukePigCopStayput
{
default
{
pic "PIGCOPDIVE";
}
override void PlayFTASound(int mode)
2022-12-12 15:00:39 +00:00
{
}
2022-12-31 08:24:43 +00:00
2022-12-12 15:00:39 +00:00
}