mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-12 21:52:01 +00:00
24 lines
343 B
Text
24 lines
343 B
Text
|
class RedneckShitBoss : DukeActor
|
||
|
{
|
||
|
const SBSPITSPD = 16;
|
||
|
const SBDIPSPD = 16;
|
||
|
const SBSNDRND = 64;
|
||
|
const SBSWHACKAMOUNT = -22;
|
||
|
|
||
|
default
|
||
|
{
|
||
|
pic "SBMOVE";
|
||
|
+FULLBRIGHT;
|
||
|
+INTERNAL_BADGUY;
|
||
|
+KILLCOUNT;
|
||
|
+NORADIUSPUSH;
|
||
|
Strength 2500;
|
||
|
}
|
||
|
|
||
|
override void Initialize()
|
||
|
{
|
||
|
self.scale = (0.75, 0.75);
|
||
|
self.setClipDistFromTile();
|
||
|
}
|
||
|
|
||
|
}
|