raze/wadsrc/static/zscript/games/duke/actors/dukeenemies/tank.zs

17 lines
274 B
Text

class DukeTank : DukeActor
{
const TANKSTRENGTH = 500;
meta class<DukeActor> spawntype;
property spawntype: spawntype;
default
{
pic "TANK";
Strength TANKSTRENGTH;
+BADGUY;
+KILLCOUNT;
+NODAMAGEPUSH;
+NORADIUSPUSH;
DukeTank.SpawnType "DukePigCop";
}
}