Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

65 Zeilen
1.8 KiB

  1. define([
  2. ], function (
  3. ) {
  4. var stats = {
  5. 'vit': 'vitality',
  6. 'regenHp': 'health regeneration',
  7. 'manaMax': 'maximum mana',
  8. 'regenMana': 'mana regeneration',
  9. 'str': 'strength',
  10. 'int': 'intellect',
  11. 'dex': 'dexterity',
  12. 'armor': 'armor',
  13. 'blockAttackChance': 'chance to block attacks',
  14. 'blockSpellChance': 'chance to block spells',
  15. 'addCritChance': 'increased crit chance',
  16. 'addCritMultiplier': 'increased crit multiplier',
  17. 'magicFind': 'increased item quality',
  18. 'itemQuantity': 'increased item quantity',
  19. 'sprintChance': 'sprint chance',
  20. 'dmgPercent': 'to all damage',
  21. 'allAttributes': 'to all attributes',
  22. 'xpIncrease': 'additional xp per kill',
  23. 'lvlRequire': 'level requirement reduction',
  24. 'elementArcanePercent': 'increased arcane damage',
  25. 'elementFrostPercent': 'increased frost damage',
  26. 'elementFirePercent': 'increased fire damage',
  27. 'elementHolyPercent': 'increased holy damage',
  28. 'elementPhysicalPercent': 'increased physical damage',
  29. 'elementPoisonPercent': 'increased poison damage',
  30. 'elementAllResist': 'all resistance',
  31. 'elementArcaneResist': 'arcane resistance',
  32. 'elementFrostResist': 'frost resistance',
  33. 'elementFireResist': 'fire resistance',
  34. 'elementHolyResist': 'holy resistance',
  35. 'elementPhysicalResist': 'physical resistance',
  36. 'elementPoisonResist': 'poison resistance',
  37. 'elementAllResist': 'all resistance',
  38. 'attackSpeed': 'attack speed',
  39. 'castSpeed': 'cast speed',
  40. //This stat is used for gambling when you can't see the stats
  41. 'stats': 'stats',
  42. //Fishing
  43. 'weight': 'lb',
  44. //Rods
  45. 'catchChance': 'extra catch chance',
  46. 'catchSpeed': 'faster catch speed',
  47. 'fishRarity': 'higher fish rarity',
  48. 'fishWeight': 'increased fish weight',
  49. 'fishItems': 'extra chance to hook items'
  50. };
  51. return {
  52. translate: function (stat) {
  53. return stats[stat];
  54. }
  55. };
  56. });