Advertisement
kolton

Untitled

Jun 28th, 2012
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. /*
  2. 0 = Black
  3. 1 = White
  4. 2 = Orange
  5.  
  6. 3 = Light Yellow
  7. 4 = Light Red
  8. 5 = Light Gold
  9. 6 = Light Blue
  10. 7 = Light Purple
  11.  
  12. 8 = Crystal Blue
  13. 9 = Crystal Red
  14. 10 = Crystal Green
  15.  
  16. 11 = Dark Yellow
  17. 12 = Dark Red
  18. 13 = Dark Gold
  19. 14 = Dark Green
  20. 15 = Dark Blue
  21. */
  22.  
  23. Unit.prototype.getColor = function () {
  24. var i,
  25. colors = {
  26. "Saintly": 13,
  27. "Holy": 13,
  28. "Godly": 13,
  29. "Visionary": 1,
  30. "Glowing": 3,
  31. "Mnemonic": 8,
  32. "Psychic": 5,
  33. "Veteran's": 5,
  34. "of the Mammoth": 9,
  35. "of Frost Shield": 6,
  36. "of Nova Shield": 8,
  37. "Faithful": 1,
  38. "Dragon's": 8,
  39. "of Spikes": 2,
  40. "of Razors": 2,
  41. "of Stability": 11,
  42. "of the Colosuss": 9,
  43. "of Defiance": 12,
  44. "of the Titan": 13,
  45. "Vulpine": 8,
  46. "Shimmering ": 7,
  47. "Rainbow": 7,
  48. "Scintillating": 7,
  49. "Prismatic": 7,
  50. "Warden's": 5,
  51. "Hawk Branded": 5,
  52. "Commander's": 5,
  53. "Priest's": 10,
  54. "Caretaker's": 5,
  55. "Terrene": 5,
  56. "Feral": 5,
  57. "Hierophant's": 10,
  58. "Resonant": 5,
  59. "Raging ": 5,
  60. "Veteran's": 5,
  61. "Berserker's": 10,
  62. "Blighting": 5,
  63. "Noxious": 5,
  64. "Mojo": 5,
  65. "Necromancer's": 10,
  66. "Sensei's": 5,
  67. "Bowyer's": 5,
  68. "Gymnastic": 5,
  69. "Spearmaiden's": 5,
  70. //"of Alacrity": 11, // on gloves, conflicts with weapons
  71. "of Wealth": 5,
  72. "of Fortune": 5,
  73. "Charged": 5,
  74. "Blazing": 5,
  75. "Freezing": 5,
  76. "Trickster's": 5,
  77. "Witch-hunter's": 10,
  78. "Arch-Angel's": 10,
  79. "Valkyrie's": 10,
  80. "of Perfection": 13,
  81. "of Regrowth": 9,
  82. "of Atlas": 13,
  83. "Massive": 13,
  84. "Savage": 13,
  85. "Merciless": 13,
  86. "Ferocious": 0,
  87. "Grinding": 1,
  88. "Cruel": 0,
  89. "Gold": 5,
  90. "Platinum": 5,
  91. "Meteoric": 5,
  92. "Strange": 5,
  93. "Weird": 5,
  94. "Knight's": 13,
  95. "Lord's": 13,
  96. "Fool's": 1,
  97. "King's": 13,
  98. "Master's": 13,
  99. "Elysian": 13,
  100. "Snowy": 6,
  101. "Shivering": 6,
  102. "Boreal": 6,
  103. "Hibernal": 6,
  104. "Fiery": 12,
  105. "Smoldering": 12,
  106. "Smoking": 12,
  107. "Flaming": 12,
  108. "Condensing": 12,
  109. "Static": 3,
  110. "Glowing": 3,
  111. "Buzzing": 3,
  112. "Arcing": 3,
  113. "Shocking": 3,
  114. "Septic": 14,
  115. "Foul": 14,
  116. "Corrosive": 14,
  117. "Toxic": 14,
  118. "of Quickness": 11,
  119. "of the Glacier": 15,
  120. "of Winter": 15,
  121. "of Burning": 12,
  122. "of Incineration": 12,
  123. "of Thunder": 11,
  124. "of Storms": 11,
  125. "of Carnage": 0,
  126. "of Slaughter": 0,
  127. "of Performance": 0,
  128. "of Transcendence": 0,
  129. "of Pestilence": 14,
  130. "of Anthrax": 14,
  131. "of the Locust": 9,
  132. "of the Lamprey": 9,
  133. "of the Wraith": 9,
  134. "of the Vampire": 9,
  135. "of the Giant": 13,
  136. "of Icebolt": 6,
  137. "of Nova": 8,
  138. "Screaming": 2,
  139. "Howling": 2,
  140. "Wailing": 2,
  141. "Sapphire": 6,
  142. "Ruby": 4,
  143. "Amber": 3,
  144. "Emerald": 10,
  145. "of Wizardry": 13
  146. };
  147.  
  148. for (i = 0; i < this.suffix.length; i += 1) {
  149. if (colors.hasOwnProperty(this.suffix[i])) {
  150. return colors[this.suffix[i]];
  151. }
  152. }
  153.  
  154. for (i = 0; i < this.prefix.length; i += 1) {
  155. if (colors.hasOwnProperty(this.prefix[i])) {
  156. return colors[this.prefix[i]];
  157. }
  158. }
  159.  
  160. return -1;
  161. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement