mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 21:11:26 +00:00
41 lines
537 B
Text
41 lines
537 B
Text
class DukePigCop : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "PIGCOP";
|
|
+INTERNAL_BADGUY;
|
|
+KILLCOUNT;
|
|
+GREENSLIMEFOOD;
|
|
}
|
|
|
|
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()
|
|
{
|
|
}
|
|
}
|