raze/wadsrc/static/zscript/games/duke/actors/redneckenemies/dog.zs

18 lines
211 B
Text
Raw Normal View History

class RedneckDog : DukeActor
{
default
{
pic "DOGRUN";
+INTERNAL_BADGUY;
+KILLCOUNT;
Strength 200;
}
override void Initialize()
{
self.scale = (0.25, 0.25);
self.setClipDistFromTile();
}
}