Advertisement
kolton

Untitled

Nov 21st, 2014
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. switch (this.classid) {
  2. case 328: // buckler
  3. return this.getStat(20);
  4. case 413: // preserved
  5. case 483: // mummified
  6. case 503: // minion
  7. return this.getStat(20) - 3;
  8. case 329: // small
  9. case 414: // zombie
  10. case 484: // fetish
  11. case 504: // hellspawn
  12. return this.getStat(20) - 5;
  13. case 331: // kite
  14. case 415: // unraveller
  15. case 485: // sexton
  16. case 505: // overseer
  17. return this.getStat(20) - 8;
  18. case 351: // spiked
  19. case 374: // deefender
  20. case 416: // gargoyle
  21. case 486: // cantor
  22. case 506: // succubus
  23. case 408: // targe
  24. case 478: // akaran t
  25. return this.getStat(20) - 10;
  26. case 330: // large
  27. case 375: // round
  28. case 417: // demon
  29. case 487: // hierophant
  30. case 507: // bloodlord
  31. return this.getStat(20) - 12;
  32. case 376: // scutum
  33. return this.getStat(20) - 14;
  34. case 409: // rondache
  35. case 479: // akaran r
  36. return this.getStat(20) - 15;
  37. case 333: // goth
  38. case 379: // ancient
  39. return this.getStat(20) - 16;
  40. case 397: // barbed
  41. return this.getStat(20) - 17;
  42. case 377: // dragon
  43. return this.getStat(20) - 18;
  44. case 502: // vortex
  45. return this.getStat(20) - 19;
  46. case 350: // bone
  47. case 396: // grim
  48. case 445: // luna
  49. case 467: // blade barr
  50. case 466: // troll
  51. case 410: // heraldic
  52. case 480: // protector
  53. return this.getStat(20) - 20;
  54. case 444: // heater
  55. case 447: // monarch
  56. case 411: // aerin
  57. case 481: // gilded
  58. case 501: // zakarum
  59. return this.getStat(20) - 22;
  60. case 332: // tower
  61. case 378: // pavise
  62. case 446: // hyperion
  63. case 448: // aegis
  64. case 449: // ward
  65. return this.getStat(20) - 24;
  66. case 412: // crown
  67. case 482: // royal
  68. case 500: // kurast
  69. return this.getStat(20) - 25;
  70. case 499: // sacred r
  71. return this.getStat(20) - 28;
  72. case 498: // sacred t
  73. return this.getStat(20) - 30;
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement