mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-02 17:12:11 +00:00
17 lines
211 B
Text
17 lines
211 B
Text
class RedneckDog : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "DOGRUN";
|
|
+INTERNAL_BADGUY;
|
|
+KILLCOUNT;
|
|
Strength 200;
|
|
}
|
|
override void Initialize()
|
|
{
|
|
self.scale = (0.25, 0.25);
|
|
self.setClipDistFromTile();
|
|
}
|
|
|
|
|
|
}
|