mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-01 00:22:03 +00:00
25 lines
409 B
Text
25 lines
409 B
Text
class RedneckPlayerPawn : DukePlayerBase
|
|
{
|
|
default
|
|
{
|
|
+DESTRUCTOIMMUNE;
|
|
Strength MAXPLAYERHEALTH;
|
|
}
|
|
}
|
|
|
|
class RedneckPlayerLyingDead : DukeActor // LNRDLYINGDEAD (3998)
|
|
{
|
|
default
|
|
{
|
|
Strength 0;
|
|
action "PLYINGFRAMES", 0, 1, 0, 1, 1;
|
|
StartAction "PLYINGFRAMES";
|
|
}
|
|
override bool animate(tspritetype t)
|
|
{
|
|
t.scale = (0.375, 0.265625);
|
|
if (self.extra > 0)
|
|
t.pos.Z += 6;
|
|
return false;
|
|
}
|
|
}
|