No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

218 líneas
2.7 KiB

  1. const events = require('../../misc/events');
  2. const prefixes = {
  3. generic: [
  4. 'aether',
  5. 'abyssal',
  6. 'ageless',
  7. 'angel%',
  8. 'ancestor\'s',
  9. 'antique',
  10. 'apprentice%',
  11. 'archer%',
  12. 'argent',
  13. 'astral',
  14. 'astute',
  15. 'avarice',
  16. 'awful',
  17. 'barbaric',
  18. 'battle',
  19. 'biting',
  20. 'blazon',
  21. 'bolstering',
  22. 'bone',
  23. 'cavalry',
  24. 'centurion%',
  25. 'citadel%',
  26. 'combat',
  27. 'command',
  28. 'concealed',
  29. 'cosmos',
  30. 'courier%',
  31. 'cruel',
  32. 'damnation',
  33. 'dazzling',
  34. 'defiant',
  35. 'demolisher%',
  36. 'demon%',
  37. 'denial%',
  38. 'deviant%',
  39. 'diamond',
  40. 'dire',
  41. 'dissector\'s',
  42. 'divine',
  43. 'doom%',
  44. 'dread',
  45. 'dreadlands',
  46. 'dream',
  47. 'empty',
  48. 'empty',
  49. 'eternal',
  50. 'eternity',
  51. 'ethereal',
  52. 'everlasting',
  53. 'fatal',
  54. 'faith%',
  55. 'final',
  56. 'fissure',
  57. 'foe%',
  58. 'forgotten',
  59. 'fragile',
  60. 'genesis',
  61. 'gladiator%',
  62. 'glistening',
  63. 'glory%',
  64. 'grisly',
  65. 'growling',
  66. 'gruesome',
  67. 'guru%',
  68. 'hell%',
  69. 'herald',
  70. 'hero\'s',
  71. 'hidden',
  72. 'hideous',
  73. 'horizon',
  74. 'hope\'s',
  75. 'hulk',
  76. 'hunter%',
  77. 'ignited',
  78. 'infernal',
  79. 'ingenious',
  80. 'inner',
  81. 'inscrutable',
  82. 'insolent%',
  83. 'intrepid',
  84. 'iron',
  85. 'journeyman%',
  86. 'justice',
  87. 'keen',
  88. 'knight%',
  89. 'light\'s',
  90. 'lingering',
  91. 'living',
  92. 'magi',
  93. 'magi',
  94. 'magnificent',
  95. 'majesty',
  96. 'master%',
  97. 'mercy%',
  98. 'mysterious',
  99. 'noble',
  100. 'northern',
  101. 'northlander\'s',
  102. 'opulent',
  103. 'palace',
  104. 'partisan',
  105. 'pathfinder',
  106. 'phoenix%',
  107. 'precious',
  108. 'prey',
  109. 'prophecy%',
  110. 'racking',
  111. 'ramble',
  112. 'reflective',
  113. 'resolute',
  114. 'reviving',
  115. 'righteous',
  116. 'rising',
  117. 'riveted',
  118. 'royalty%',
  119. 'runed',
  120. 'sage%',
  121. 'sanguine',
  122. 'savant%',
  123. 'scholar\'s',
  124. 'scorpion%',
  125. 'scout%',
  126. 'second',
  127. 'sergeant%',
  128. 'shadow%',
  129. 'shattered',
  130. 'shrewd',
  131. 'silent',
  132. 'sky',
  133. 'sleeping',
  134. 'sly',
  135. 'soldier%',
  136. 'solemn',
  137. 'spite',
  138. 'star',
  139. 'the',
  140. 'thief%',
  141. 'thinker\'s',
  142. 'timeworn',
  143. 'total',
  144. 'tower',
  145. 'unborn',
  146. 'unearthed',
  147. 'union',
  148. 'unity%',
  149. 'unwavering',
  150. 'vagabond%',
  151. 'vampiric',
  152. 'vehement',
  153. 'vengeance',
  154. 'vengeful',
  155. 'veteran%',
  156. 'virile',
  157. 'virtuous',
  158. 'virtue',
  159. 'vulcanized',
  160. 'war',
  161. 'wind',
  162. 'wisdom%'
  163. ],
  164. armor: [
  165. 'phalanx',
  166. 'protection',
  167. 'rugged',
  168. 'sheltered',
  169. 'unyielding'
  170. ],
  171. weapons: [
  172. 'biting',
  173. 'booming',
  174. 'carve',
  175. 'cleave',
  176. 'devouring',
  177. 'forge',
  178. 'piercing',
  179. 'reaper%',
  180. 'steady'
  181. ],
  182. slots: {
  183. feet: [
  184. 'kick',
  185. 'strider',
  186. 'trail'
  187. ],
  188. hands: [
  189. 'choke',
  190. 'claw',
  191. 'crush',
  192. 'fist',
  193. 'grip',
  194. 'hand',
  195. 'knuckle',
  196. 'pummel',
  197. 'shackle',
  198. 'strider'
  199. ],
  200. waist: [
  201. 'sheath'
  202. ],
  203. head: [
  204. 'masked'
  205. ],
  206. tool: []
  207. }
  208. };
  209. module.exports = {
  210. prefixes,
  211. init: function () {
  212. events.emit('onBeforeGetItemNamePrefixes', prefixes);
  213. }
  214. };