mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-28 06:53:29 +00:00
56 lines
808 B
Text
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()
|
|
{
|
|
}
|
|
|
|
}
|
|
|