mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-02 09:02:18 +00:00
56 lines
824 B
Text
56 lines
824 B
Text
class DukePigCop : DukeActor
|
|
{
|
|
const PIGCOPSTRENGTH = 100;
|
|
|
|
default
|
|
{
|
|
pic "PIGCOP";
|
|
+INTERNAL_BADGUY;
|
|
+KILLCOUNT;
|
|
+GREENSLIMEFOOD;
|
|
Strength PIGCOPSTRENGTH;
|
|
|
|
}
|
|
|
|
override void PlayFTASound(int mode)
|
|
{
|
|
self.PlayActorSound("PIG_RECOG");
|
|
}
|
|
|
|
}
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
//
|
|
//
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
class DukePigCopStayput: DukePigCop
|
|
{
|
|
default
|
|
{
|
|
pic "PIGCOPSTAYPUT";
|
|
+BADGUYSTAYPUT;
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
//
|
|
//
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
class DukePigCopDive : DukePigCopStayput
|
|
{
|
|
default
|
|
{
|
|
pic "PIGCOPDIVE";
|
|
}
|
|
|
|
override void PlayFTASound(int mode)
|
|
{
|
|
}
|
|
|
|
}
|
|
|