Advertisement
ijontichy

<stdin>

Sep 18th, 2013
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.67 KB | None | 0 0
  1. 212 int MonsterCounts[MONSTERCOUNT][NEWITEMCOUNT*2] =
  2. 213 {
  3. 214 // Each pair represents a random(a1, a2) amount added to an item's cache
  4. 215 // 100 in any category means +1 to it
  5. 216 //
  6. 217 // Notes
  7. 218 // - Blue armor only applies after 100, green armor only applies before 100
  8. 219 //
  9. 220 // Clip Shell Rocket Cell Health Green Armor Blue Armor Health uncap Ammo uncap
  10. 221
  11. 222 /* Zombieman */ {100, 300, 0, 50, 0, 5, 0, 25, 0, 100, 0, 50, 0, 15, 0, 1, 0, 1},
  12. 223 /* Shotgun guy */ {75, 250, 75, 145, 10, 20, 15, 45, 50, 200, 25, 100, 10, 25, 1, 3, 0, 2},
  13. 224 /* Chaingun guy */ {225, 500, 150, 300, 15, 35, 35, 90, 150, 400, 125, 250, 25, 40, 2, 8, 1, 4},
  14. 225 /* Imp */ {50, 400, 75, 135, 10, 25, 15, 55, 35, 95, 50, 125, 5, 15, 2, 6, 1, 2},
  15. 226 /* Demon */ {500, 850, 125, 235, 35, 50, 40, 110, 15, 95, 215, 340, 30, 75, 3, 7, 2, 4},
  16. 227 /* Spectre */ {500, 850, 125, 235, 35, 50, 40, 120, 25, 105, 235, 360, 35, 85, 3, 7, 2, 4},
  17. 228 /* Cacodemon */ {1250, 2150, 215, 375, 85, 115, 225, 450, 125, 250, 100, 175, 50, 100, 6, 10, 5, 9},
  18. 229 /* Lost soul */ {550, 950, 40, 75, 5, 12, 85, 115, 80, 140, 55, 95, 20, 35, 2, 5, 3, 5},
  19. 230 /* Pain elemental */ {1500, 2500, 225, 425, 15, 37, 1100, 1700, 275, 325, 325, 455, 85, 135, 14, 21, 8, 13},
  20. 231 /* Revenant */ {1400, 1850, 175, 275, 185, 300, 850, 1400, 225, 295, 250, 350, 50, 95, 10, 17, 6, 11},
  21. 232 /* Hell knight */ {1200, 1450, 200, 340, 140, 240, 1200, 1950, 170, 240, 190, 225, 70, 115, 12, 15, 8, 12},
  22. 233 /* Arachnotron */ {750, 1200, 250, 325, 210, 300, 1900, 3250, 250, 375, 150, 185, 115, 160, 17, 22, 11, 15},
  23. 234 /* Fatso */ {700, 1050, 275, 350, 260, 330, 2250, 3150, 275, 415, 105, 135, 140, 185, 19, 24, 13, 17},
  24. 235 /* Baron of Hell */ {1050, 1500, 425, 550, 450, 600, 3500, 5000, 350, 550, 120, 175, 225, 370, 25, 35, 17, 24},
  25. 236 /* Arch-Vile */ {800, 1250, 650, 950, 400, 750, 3250, 4500, 800, 1400, 175, 240, 390, 620, 30, 45, 20, 25},
  26. 237 /* Spider mastermind */ {1500, 2250, 1000, 1250, 950, 1400, 4800, 5750, 1250, 1900, 280, 430, 750, 900, 45, 60, 30, 40},
  27. 238 /* Cyberdemon */ {1750, 2750, 1400, 1900, 1400, 1900, 5500, 6500, 1500, 2500, 350, 600, 1000, 1250, 55, 75, 35, 50},
  28. 239 /* Nazi */ {175, 350, 55, 90, 15, 30, 20, 55, 70, 250, 30, 95, 15, 30, 1, 4, 1, 2},
  29. 240 };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement