mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-04 01:51:25 +00:00
18 lines
274 B
Text
18 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";
|
||
|
}
|
||
|
}
|