mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-02 17:12:11 +00:00
18 lines
No EOL
215 B
Text
18 lines
No EOL
215 B
Text
class RedneckCow : DukeActor
|
|
{
|
|
const COWSTRENGTH = 50;
|
|
|
|
default
|
|
{
|
|
pic "COW";
|
|
+BADGUY;
|
|
Strength COWSTRENGTH;
|
|
}
|
|
|
|
override void Initialize()
|
|
{
|
|
self.scale = (0.5, 0.5);
|
|
self.setClipDistFromTile();
|
|
}
|
|
|
|
} |