mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-04 01:51:25 +00:00
19 lines
No EOL
264 B
Text
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);
|
|
}
|
|
|
|
} |