mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-03 09:32:45 +00:00
4692cc55f7
Only required 4 new flags plus one property...
19 lines
No EOL
232 B
Text
19 lines
No EOL
232 B
Text
class RedneckCow : DukeActor
|
|
{
|
|
const COWSTRENGTH = 50;
|
|
|
|
default
|
|
{
|
|
pic "COW";
|
|
+BADGUY;
|
|
+NODAMAGETURN;
|
|
Strength COWSTRENGTH;
|
|
}
|
|
|
|
override void Initialize()
|
|
{
|
|
self.scale = (0.5, 0.5);
|
|
self.setClipDistFromTile();
|
|
}
|
|
|
|
} |