mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 21:11:26 +00:00
57 lines
645 B
Text
57 lines
645 B
Text
|
|
class DukeLizMan : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "LIZMAN";
|
|
}
|
|
|
|
override void PlayFTASound()
|
|
{
|
|
self.PlayActorSound("CAPT_RECOG");
|
|
}
|
|
}
|
|
|
|
class DukeLizManSpitting : DukeLizMan
|
|
{
|
|
default
|
|
{
|
|
pic "LIZMANSPITTING";
|
|
}
|
|
}
|
|
|
|
class DukeLizManFeeding : DukeLizMan
|
|
{
|
|
default
|
|
{
|
|
pic "LIZMANFEEDING";
|
|
}
|
|
}
|
|
|
|
class DukeLizManJump : DukeLizMan
|
|
{
|
|
default
|
|
{
|
|
pic "LIZMANJUMP";
|
|
}
|
|
}
|
|
|
|
class DukeLizManStayput : DukeLizMan
|
|
{
|
|
default
|
|
{
|
|
pic "LIZMANSTAYPUT";
|
|
}
|
|
|
|
override void PlayFTASound()
|
|
{
|
|
}
|
|
|
|
override void initialize()
|
|
{
|
|
super.initialize();
|
|
self.actorstayput = self.sector; // make this a flag once everything has been exported.
|
|
}
|
|
|
|
}
|
|
|