raze/wadsrc/static/zscript/games/duke/actors/dukestuff/blimp.zs
2023-04-23 16:43:07 +02:00

20 lines
265 B
Text

class DukeBlimp : DukeActor
{
const BLIMPRESPAWNTIME = 2048;
default
{
pic "BLIMP";
Strength 1;
+SPAWNWEAPONDEBRIS;
}
override void Initialize()
{
self.cstat |= CSTAT_SPRITE_BLOCK_ALL;
self.clipdist = 32;
self.ChangeStat(STAT_ACTOR);
}
}