mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-02 17:12:11 +00:00
18 lines
211 B
Text
18 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();
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|