Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

47 wiersze
1.3 KiB

  1. define([
  2. ], function(
  3. ) {
  4. var stats = {
  5. 'vit': 'vitality',
  6. 'hpMax': 'vitality',
  7. 'regenHp': 'health regeneration',
  8. 'manaMax': 'maximum mana',
  9. 'regenMana': 'mana regeneration',
  10. 'str': 'strength',
  11. 'int': 'intellect',
  12. 'dex': 'dexterity',
  13. 'armor': 'armor',
  14. 'addCritChance': 'increased crit chance',
  15. 'magicFind': 'magic find',
  16. 'sprintChance': 'sprint chance',
  17. 'dmgPercent': 'to all damage',
  18. 'allAttributes': 'to all attributes',
  19. 'xpIncrease': 'additional xp per kill',
  20. 'elementArcanePercent': 'increased arcane damage',
  21. 'elementFrostPercent': 'increased frost damage',
  22. 'elementFirePercent': 'increased fire damage',
  23. 'elementHolyPercent': 'increased holy damage',
  24. 'elementPhysicalPercent': 'increased physical damage',
  25. 'elementPoisonPercent': 'increased poison damage',
  26. 'elementArcaneResist': 'arcane resistance',
  27. 'elementFrostResist': 'frost resistance',
  28. 'elementFireResist': 'fire resistance',
  29. 'elementHolyResist': 'holy resistance',
  30. 'elementPhysicalResist': 'physical resistance',
  31. 'elementPoisonResist': 'poison resistance',
  32. 'elementAllResist': 'all resistance',
  33. //This stat is used for gambling when you can't see the stats
  34. 'stats': 'stats'
  35. };
  36. return {
  37. translate: function(stat) {
  38. return stats[stat];
  39. }
  40. };
  41. });