mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-02 17:12:11 +00:00
50 lines
697 B
Text
50 lines
697 B
Text
class RedneckMinion : DukeActor
|
|
{
|
|
const MINIONSTRENGTH = 50;
|
|
const MINIONFREAK = -10;
|
|
|
|
default
|
|
{
|
|
pic "MINION";
|
|
+INTERNAL_BADGUY;
|
|
+KILLCOUNT;
|
|
+LOOKALLAROUNDWITHPAL8;
|
|
+TRANSFERPALTOJIBS;
|
|
}
|
|
|
|
override void Initialize()
|
|
{
|
|
self.scale = (0.25, 0.25);
|
|
self.setClipDistFromTile();
|
|
if (ud.ufospawnsminion)
|
|
self.pal = 8;
|
|
if (self.pal == 19)
|
|
{
|
|
self.bHitradius_NoEffect = true;
|
|
self.bMagmaImmune = true;
|
|
}
|
|
}
|
|
|
|
override bool animate(tspritetype t)
|
|
{
|
|
if (Raze.isRRRA() && t.pal == 19)
|
|
t.shade = -127;
|
|
return false;
|
|
}
|
|
|
|
}
|
|
|
|
class RedneckMinionStayput: RedneckMinion
|
|
{
|
|
default
|
|
{
|
|
pic "MINIONSTAYPUT";
|
|
+BADGUYSTAYPUT;
|
|
}
|
|
|
|
override void PlayFTASound()
|
|
{
|
|
}
|
|
|
|
}
|
|
|