raze/wadsrc/static/zscript/games/duke/actors/vacation/beachball.zs
2023-05-19 22:59:21 +02:00

19 lines
No EOL
264 B
Text

class VacationBeachBall : DukeActor
{
const BALLSTRENGTH = 20;
default
{
pic "BEACHBALL";
Strength WEAK;
}
override void Initialize(DukeActor spawner)
{
self.cstat |= CSTAT_SPRITE_BLOCK_ALL;
self.clipdist = 32;
self.ChangeStat(STAT_ACTOR);
}
}