mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-15 21:57:22 +01:00
60 lines
1.4 KiB
JavaScript
60 lines
1.4 KiB
JavaScript
import t from '../../../translation';
|
|
|
|
let backSpecialWonderconRed = {
|
|
text: t('backSpecialWonderconRedText'),
|
|
notes: t('backSpecialWonderconRedNotes'),
|
|
value: 0,
|
|
mystery: 'wondercon',
|
|
};
|
|
|
|
let backSpecialWonderconBlack = {
|
|
text: t('backSpecialWonderconBlackText'),
|
|
notes: t('backSpecialWonderconBlackNotes'),
|
|
value: 0,
|
|
mystery: 'wondercon',
|
|
};
|
|
|
|
let bodySpecialWonderconRed = {
|
|
text: t('bodySpecialWonderconRedText'),
|
|
notes: t('bodySpecialWonderconRedNotes'),
|
|
value: 0,
|
|
mystery: 'wondercon',
|
|
};
|
|
|
|
let bodySpecialWonderconGold = {
|
|
text: t('bodySpecialWonderconGoldText'),
|
|
notes: t('bodySpecialWonderconGoldNotes'),
|
|
value: 0,
|
|
mystery: 'wondercon',
|
|
};
|
|
|
|
let bodySpecialWonderconBlack = {
|
|
text: t('bodySpecialWonderconBlackText'),
|
|
notes: t('bodySpecialWonderconBlackNotes'),
|
|
value: 0,
|
|
mystery: 'wondercon',
|
|
};
|
|
|
|
let eyewearSpecialWonderconRed = {
|
|
text: t('eyewearSpecialWonderconRedText'),
|
|
notes: t('eyewearSpecialWonderconRedNotes'),
|
|
value: 0,
|
|
mystery: 'wondercon',
|
|
};
|
|
|
|
let eyewearSpecialWonderconBlack = {
|
|
text: t('eyewearSpecialWonderconBlackText'),
|
|
notes: t('eyewearSpecialWonderconBlackNotes'),
|
|
value: 0,
|
|
mystery: 'wondercon',
|
|
};
|
|
|
|
export {
|
|
backSpecialWonderconRed,
|
|
backSpecialWonderconBlack,
|
|
bodySpecialWonderconRed,
|
|
bodySpecialWonderconGold,
|
|
bodySpecialWonderconBlack,
|
|
eyewearSpecialWonderconRed,
|
|
eyewearSpecialWonderconBlack,
|
|
}; |