raze/wadsrc/static/zscript/games/duke/actors/player.zs
2023-04-23 17:22:40 +02:00

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;
}
}