mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-11 13:21:49 +00:00
21 lines
265 B
Text
21 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);
|
||
|
}
|
||
|
|
||
|
}
|