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

39 lines
409 B
Text
Raw Normal View History

2022-12-12 15:00:39 +00:00
class DukePigCop : DukeActor
{
default
{
pic "PIGCOP";
+INTERNAL_BADGUY;
+KILLCOUNT;
+GREENSLIMEFOOD;
2022-12-12 15:00:39 +00:00
}
override void PlayFTASound()
{
self.PlayActorSound("PIG_RECOG");
}
}
class DukePigCopStayput: DukePigCop
{
default
{
pic "PIGCOPSTAYPUT";
+BADGUYSTAYPUT;
2022-12-12 15:00:39 +00:00
}
}
2022-12-12 15:00:39 +00:00
class DukePigCopDive : DukePigCopStayput
{
default
{
pic "PIGCOPDIVE";
}
override void PlayFTASound()
{
}
}