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