raze/wadsrc/static/zscript/games/duke/actors/pigcop.zs
2023-04-02 13:13:06 +02:00

38 lines
484 B
Text

class DukePigCop : DukeActor
{
default
{
pic "PIGCOP";
}
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()
{
}
}