Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

203 rindas
2.3 KiB

  1. const events = require('../../misc/events');
  2. const suffixes = {
  3. generic: [
  4. 'absence',
  5. 'abomination',
  6. 'abyss',
  7. 'acumen',
  8. 'alacrity',
  9. 'arts',
  10. 'ascension',
  11. 'awakening',
  12. 'bite',
  13. 'boon',
  14. 'breath',
  15. 'call',
  16. 'calm',
  17. 'conclave',
  18. 'conqueror',
  19. 'crest',
  20. 'dawn',
  21. 'defiance',
  22. 'derision',
  23. 'desire',
  24. 'devotion',
  25. 'dispute',
  26. 'doctrine',
  27. 'doom',
  28. 'eater',
  29. 'eclipse',
  30. 'envy',
  31. 'flash',
  32. 'flourish',
  33. 'font',
  34. 'gear',
  35. 'gift',
  36. 'glitter',
  37. 'grace',
  38. 'heart',
  39. 'hope',
  40. 'horror',
  41. 'ichor',
  42. 'inception',
  43. 'judgment',
  44. 'justice',
  45. 'keeper',
  46. 'knack',
  47. 'legend',
  48. 'light',
  49. 'mercy',
  50. 'mind',
  51. 'might',
  52. 'myth',
  53. 'oblivion',
  54. 'omen',
  55. 'penance',
  56. 'peace',
  57. 'pride',
  58. 'promise',
  59. 'prospect',
  60. 'punishment',
  61. 'quest',
  62. 'radiance',
  63. 'rage',
  64. 'rager',
  65. 'relic',
  66. 'rescue',
  67. 'revenge',
  68. 'rigor',
  69. 'ruin',
  70. 'salvation',
  71. 'sanctum',
  72. 'savvy',
  73. 'scar',
  74. 'scorn',
  75. 'secret',
  76. 'seeker',
  77. 'sentry',
  78. 'serenity',
  79. 'silence',
  80. 'shade',
  81. 'shard',
  82. 'snare',
  83. 'solitude',
  84. 'spoil',
  85. 'star',
  86. 'strategy',
  87. 'style',
  88. 'talent',
  89. 'technique',
  90. 'terminus',
  91. 'terror',
  92. 'testimony',
  93. 'tide',
  94. 'vessel',
  95. 'vision',
  96. 'will',
  97. 'wind',
  98. 'wish',
  99. 'wisp',
  100. 'word'
  101. ],
  102. armor: [
  103. 'armor',
  104. 'barrier',
  105. 'bulwark',
  106. 'cover',
  107. 'fortress',
  108. 'plate',
  109. 'guard',
  110. 'shell',
  111. 'protector',
  112. 'salvation',
  113. 'ward'
  114. ],
  115. jewelry: [
  116. ],
  117. weapons: [
  118. 'bite',
  119. 'crusher',
  120. 'executor',
  121. 'implement',
  122. 'reaper',
  123. 'render',
  124. 'siphon',
  125. 'slasher',
  126. 'smite',
  127. 'splitter',
  128. 'talon',
  129. 'union',
  130. 'weapon',
  131. 'wrecker',
  132. 'decimator',
  133. 'reach',
  134. 'bane',
  135. 'obliterator'
  136. ],
  137. slots: {
  138. feet: [
  139. 'crushers',
  140. 'groundpounders',
  141. 'hooves',
  142. 'runners',
  143. 'stompers',
  144. 'talons',
  145. 'step'
  146. ],
  147. hands: [
  148. 'gauntlets',
  149. 'hands',
  150. 'restraints',
  151. 'talons',
  152. 'vices'
  153. ],
  154. head: [
  155. 'brim',
  156. 'crest',
  157. 'crown',
  158. 'sentinel',
  159. 'visage',
  160. 'visor'
  161. ],
  162. waist: [
  163. 'brace',
  164. 'cirque',
  165. 'clasp',
  166. 'sheath',
  167. 'strap',
  168. 'truss'
  169. ],
  170. legs: [
  171. 'bounders',
  172. 'runners'
  173. ],
  174. chest: [
  175. 'aegis',
  176. 'vestments'
  177. ],
  178. finger: [
  179. 'ring',
  180. 'loop',
  181. 'circle',
  182. 'twist'
  183. ],
  184. neck: [
  185. 'choker',
  186. 'curio',
  187. 'chain',
  188. 'noose'
  189. ],
  190. tool: []
  191. }
  192. };
  193. module.exports = {
  194. suffixes,
  195. init: function () {
  196. events.emit('onBeforeGetItemNameSuffixes', suffixes);
  197. }
  198. };