summaryrefslogtreecommitdiff
path: root/src/game/g_csw.h
diff options
context:
space:
mode:
authorenneract <trem.redman@gmail.com>2014-12-19 20:38:46 +0100
committerenneract <trem.redman@gmail.com>2014-12-19 20:38:46 +0100
commit3a7015bd646110a378c3b5f0a8638368f2827788 (patch)
tree07cb29caa192f462664b5881b9cbaf7f7502a5a0 /src/game/g_csw.h
parent3afe13c2a292e0940a05634b322300ccd1238541 (diff)
Implement combat statistics.
Diffstat (limited to 'src/game/g_csw.h')
-rw-r--r--src/game/g_csw.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/game/g_csw.h b/src/game/g_csw.h
new file mode 100644
index 0000000..4f3cdf2
--- /dev/null
+++ b/src/game/g_csw.h
@@ -0,0 +1,30 @@
+CSW( CSW_UNKNOWN, NULL ),
+
+CSW( CSW_BLASTER, "Blaster" ),
+CSW( CSW_MACHINEGUN, "Rifle" ),
+CSW( CSW_PAINSAW, "Pain Saw" ),
+CSW( CSW_PAINSAW_ALT, "Pain Saw Blade" ),
+CSW( CSW_SHOTGUN, "Shotgun" ),
+CSW( CSW_LASGUN, "Las Gun" ),
+CSW( CSW_MDRIVER, "Mass Driver" ),
+CSW( CSW_CHAINGUN, "Chaingun" ),
+CSW( CSW_PRIFLE, "Pulse Rifle" ),
+CSW( CSW_FLAMER, "Flame Thrower" ),
+CSW( CSW_LIGHTNING, "Lightning Gun" ),
+CSW( CSW_LCANNON, "Lucifer Cannon" ),
+CSW( CSW_ROCKETL, "Rocket Launcher" ),
+CSW( CSW_GRENADE, "Grenade" ),
+
+CSW( CSW_ABUILDER, "Granger" ),
+CSW( CSW_ABUILDER_ALT, "Granger Spit" ),
+CSW( CSW_LEVEL1, "Basilisk" ),
+CSW( CSW_LEVEL2, "Marauder" ),
+CSW( CSW_LEVEL2_ALT, "Marauder Zap" ),
+CSW( CSW_LEVEL3, "Dragoon" ),
+CSW( CSW_LEVEL3_ALT, "Dragoon Barb" ),
+CSW( CSW_LEVEL4, "Tyrant" ),
+CSW( CSW_LEVEL4_ALT, "Tyrant Flames" ),
+CSW( CSW_LEVEL5, "Hummel" ),
+CSW( CSW_LEVEL5_ALT, "Hummel Prickles" )
+
+#define CSW_MAX_NAME_LEN 15