UNPKG

poe-i18n

Version:

i18n utility for Path of Exile

32 lines (31 loc) 681 B
// TODO howto translate? // used in 'mod_value_to_item_class' in Poorjoy's Asylum export var item_classes = [ 'Amulets', 'Rings', 'Claws', 'Daggers', 'Wands', 'One Hand Swords', 'One Hand Axes', 'One Hand Maces', 'Bows', 'Staves', 'Two Hand Swords', 'Two Hand Maces', 'Quivers', 'Belts', 'Gloves', 'Boots', 'Body Armours', 'Helmets', 'Shields', 'Sceptres' ]; var formatter = { format: function (n) { return item_classes[n % item_classes.length]; }, inverse: function (item_class) { return item_classes.indexOf(item_class); }, regexp: '.+?', negates: false }; export default formatter;