2022-12-12 15:00:39 +00:00
|
|
|
class DukePigCop : DukeActor
|
|
|
|
{
|
|
|
|
default
|
|
|
|
{
|
|
|
|
pic "PIGCOP";
|
2022-12-19 21:40:16 +00:00
|
|
|
+INTERNAL_BADGUY;
|
|
|
|
+KILLCOUNT;
|
2022-12-12 15:00:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
override void PlayFTASound()
|
|
|
|
{
|
|
|
|
self.PlayActorSound("PIG_RECOG");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class DukePigCopStayput: DukePigCop
|
|
|
|
{
|
|
|
|
default
|
|
|
|
{
|
|
|
|
pic "PIGCOPSTAYPUT";
|
|
|
|
}
|
|
|
|
|
|
|
|
override void initialize()
|
|
|
|
{
|
|
|
|
super.initialize();
|
|
|
|
self.actorstayput = self.sector; // make this a flag once everything has been exported.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class DukePigCopDive : DukePigCopStayput
|
|
|
|
{
|
|
|
|
default
|
|
|
|
{
|
|
|
|
pic "PIGCOPDIVE";
|
|
|
|
}
|
|
|
|
|
|
|
|
override void PlayFTASound()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|