raze/wadsrc/static/zscript/games/duke/actors/dukestuff/blimp.zs

21 lines
265 B
Text
Raw Normal View History

2023-04-23 14:43:07 +00:00
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);
}
}