mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-03 09:32:45 +00:00
17 lines
274 B
Text
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";
|
|
}
|
|
}
|