mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-02 09:02:18 +00:00
20 lines
266 B
Text
20 lines
266 B
Text
class DukePlayerBase : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "APLAYER";
|
|
+DESTRUCTOIMMUNE;
|
|
}
|
|
}
|
|
|
|
|
|
class RedneckPlayerLyingDead : DukeActor
|
|
{
|
|
override bool animate(tspritetype t)
|
|
{
|
|
t.scale = (0.375, 0.265625);
|
|
if (self.extra > 0)
|
|
t.pos.Z += 6;
|
|
return false;
|
|
}
|
|
}
|