raze/wadsrc/static/zscript/games/duke/actors/vacation/beachball.zs

19 lines
264 B
Text
Raw Normal View History

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