raze/wadsrc/static/zscript/games/duke/actors/pig.zs
Christoph Oelckers dc15418f37 - added missing elements for RR.
A few of Duke's actors which are not used in RR had to be included because some stale CON code still accesses them.
2023-04-09 09:46:10 +02:00

37 lines
471 B
Text

class RedneckPig : DukeActor
{
default
{
pic "PIG";
+INTERNAL_BADGUY;
}
override void Initialize()
{
self.scale = (0.25, 0.25);;
self.setClipDistFromTile();
}
}
class RedneckPigStayput: RedneckPig
{
default
{
pic "PIGSTAYPUT";
}
override void initialize()
{
super.initialize();
self.actorstayput = self.sector; // make this a flag once everything has been exported.
}
}
class RedneckPigEat : RedneckPig
{
default
{
pic "PIGEAT";
}
}