Files
habitica/website/common/script/content/gear/sets/special/special-takeThis.js
2019-10-08 16:57:10 +02:00

71 lines
1.2 KiB
JavaScript

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