Advertisement
ijontichy

<stdin>

Oct 28th, 2012
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.48 KB | None | 0 0
  1. #define CLASSCOUNT 7
  2. #define SLOTCOUNT 9
  3. #define CHOICECOUNT 3
  4.  
  5. #define S_WEP 0
  6. #define S_AMMO 1
  7. #define S_PICKUPMESSAGE 2
  8.  
  9. int ClassWeapons[CLASSCOUNT][SLOTCOUNT][CHOICECOUNT] =
  10. {
  11. { // Doomguy
  12. {" Fist ", "", "I PUNCH YOO"},
  13. {" Chainsaw ", "", "A chainsaw! Find some meat!"},
  14. {" Pistol ", "", "Picked up a pistol."},
  15. {" Shotgun ", "AmmoShell", "You got the shotgun!"},
  16. {"Super Shotgun", "AmmoShell", "You got the super shotgun!"},
  17. {" Chaingun ", "Clip", "You got the chaingun!"},
  18. {"Rocket Launcher", "RocketAmmo", "You got the rocket launcher!"},
  19. {"Plasma Rifle", "Cell", "You got the plasma rifle!"},
  20. {"BFG9000", "Cell", "You got the BFG9000! Oh, yes."},
  21. },
  22.  
  23. { // Chexguy
  24. {" Bootspoon ", "", "I SCOOP YOO"},
  25. {"Super Bootspork", "", "You got the Super Bootspork!"},
  26. {"Mini-Zorcher", "", "Picked up a Mini Zorcher."},
  27. {"Large Zorcher", "AmmoShell", "You got the Large Zorcher!"},
  28. {"Super Large Zorcher", "AmmoShell", "You got the Mega Zorcher!"},
  29. {"Rapid Zorcher", "Clip", "You got the Rapid Zorcher!"},
  30. {"Zorch Propulsor", "RocketAmmo", "You got the Zorch Propulsor!"},
  31. {"Phasing Zorcher", "Cell", "You got the Phasing Zorcher!"},
  32. {"LAZ Device", "Cell", "You got the LAZ Device! Woot!"},
  33. },
  34.  
  35. { // Corvux
  36. {" Staff ", "", "I JAB YOO"},
  37. {"Gauntlets of the Necromancer", "", "Gauntlets of the Necromancer! Find some meat!"},
  38. {"Gold Wand", "", "Picked up a gold wand."},
  39. {" Firemace ", "AmmoShell", "You got the firemace!"},
  40. {"Ethereal Crossbow", "AmmoShell", "You got the ethereal crossbow!"},
  41. {"Dragon Claw", "Clip", "You got the blaster!"},
  42. {"Phoenix Rod", "RocketAmmo", "You got the Phoenix rod!"},
  43. {"Hellstaff", "Cell", "You got the hellstaff!"},
  44. {"PortTomeCoop", "", "You got the Tome of Power! Oh, yes."},
  45. },
  46.  
  47. { // Parias
  48. {"Mace of Contrition", "", "I WACK YOO"},
  49. {"", "", ""},
  50. {"Sapphire Wand", "", "Picked up a sapphire wand."},
  51. {"Frost Shards", "AmmoShell", "You got the frost shards!"},
  52. {"Timon's Axe", "AmmoShell", "You got Timon's axe!"},
  53. {"Serpent Staff", "Clip", "You got the serpent staff!"},
  54. {"Hammer of Retribution", "RocketAmmo", "You got the hammer of retribution!"},
  55. {"Firestorm", "Cell", "You got the Firestorm!"},
  56. {"Wraithverge", "Cell", "You got the Wraithverge! Smite with extreme prejudice."},
  57. }
  58. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement