habitica/common/script/src/content/gear/body.js

78 lines
1.9 KiB
JavaScript
Raw Normal View History

2015-09-21 22:35:27 +00:00
import {translator as t} from '../helpers';
2015-09-21 17:52:15 +00:00
import events from '../events';
let body = {
base: {
0: {
text: t('bodyBase0Text'),
notes: t('bodyBase0Notes'),
value: 0
}
},
special: {
wondercon_red: {
text: t('bodySpecialWonderconRedText'),
notes: t('bodySpecialWonderconRedNotes'),
value: 0,
mystery: 'wondercon'
},
wondercon_gold: {
text: t('bodySpecialWonderconGoldText'),
notes: t('bodySpecialWonderconGoldNotes'),
value: 0,
mystery: 'wondercon'
},
wondercon_black: {
text: t('bodySpecialWonderconBlackText'),
notes: t('bodySpecialWonderconBlackNotes'),
value: 0,
mystery: 'wondercon'
},
summerHealer: {
event: events.summer,
specialClass: 'healer',
text: t('bodySpecialSummerHealerText'),
notes: t('bodySpecialSummerHealerNotes'),
value: 20
},
summerMage: {
event: events.summer,
specialClass: 'wizard',
text: t('bodySpecialSummerMageText'),
notes: t('bodySpecialSummerMageNotes'),
value: 20
},
summer2015Healer: {
event: events.summer2015,
specialClass: 'healer',
text: t('bodySpecialSummer2015HealerText'),
notes: t('bodySpecialSummer2015HealerNotes'),
value: 20
},
summer2015Mage: {
event: events.summer2015,
specialClass: 'wizard',
text: t('bodySpecialSummer2015MageText'),
notes: t('bodySpecialSummer2015MageNotes'),
value: 20
},
summer2015Rogue: {
event: events.summer2015,
specialClass: 'rogue',
text: t('bodySpecialSummer2015RogueText'),
notes: t('bodySpecialSummer2015RogueNotes'),
value: 20
},
summer2015Warrior: {
event: events.summer2015,
specialClass: 'warrior',
text: t('bodySpecialSummer2015WarriorText'),
notes: t('bodySpecialSummer2015WarriorNotes'),
value: 20
}
}
};
export default body;