raze/wadsrc/static/zscript/games/duke/actors/pig.zs

29 lines
401 B
Text
Raw Normal View History

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.
}
}