Files
habitica/common/script/content/gear/sets/special/special-takeThis.js
T
Sabe Jones d498f5dee3 It's dangerous to go alone. Take This gear. (#7713)
* feat(content): Take This equipment

* chore(sprites): add icons
2016-06-29 13:33:56 -05:00

73 lines
1.3 KiB
JavaScript

import t from '../../../translation';
let armorSpecialTakeThis = {
text: t('armorSpecialTakeThisText'),
notes: t('armorSpecialTakeThisNotes', {attrs: 5}),
value: 0,
con: 5,
int: 5,
per: 5,
str: 5,
};
let backSpecialTakeThis = {
text: t('backSpecialTakeThisText'),
notes: t('backSpecialTakeThisNotes', {attrs: 1}),
value: 0,
con: 1,
int: 1,
per: 1,
str: 1,
};
let bodySpecialTakeThis = {
text: t('bodySpecialTakeThisText'),
notes: t('bodySpecialTakeThisNotes', {attrs: 1}),
value: 0,
con: 1,
int: 1,
per: 1,
str: 1,
};
let headSpecialTakeThis = {
text: t('headSpecialTakeThisText'),
notes: t('headSpecialTakeThisNotes', {attrs: 5}),
value: 0,
con: 5,
int: 5,
per: 5,
str: 5,
};
let shieldSpecialTakeThis = {
text: t('shieldSpecialTakeThisText'),
notes: t('shieldSpecialTakeThisNotes', {attrs: 5}),
value: 0,
con: 5,
int: 5,
per: 5,
str: 5,
};
let weaponSpecialTakeThis = {
text: t('weaponSpecialTakeThisText'),
notes: t('weaponSpecialTakeThisNotes', {attrs: 5}),
value: 0,
con: 5,
int: 5,
per: 5,
str: 5,
};
let takeThisSet = {
armorSpecialTakeThis,
backSpecialTakeThis,
bodySpecialTakeThis,
headSpecialTakeThis,
shieldSpecialTakeThis,
weaponSpecialTakeThis,
};
module.exports = takeThisSet;