Advertisement
kolton

Untitled

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