2015-11-16 23:29:13 +00:00
|
|
|
import t from '../../translation';
|
|
|
|
|
|
2019-10-08 14:57:10 +00:00
|
|
|
const armor = {
|
2015-11-16 23:29:13 +00:00
|
|
|
0: {
|
|
|
|
|
text: t('armorBase0Text'),
|
|
|
|
|
notes: t('armorBase0Notes'),
|
|
|
|
|
value: 0,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
2019-10-08 14:57:10 +00:00
|
|
|
const back = {
|
2015-11-16 23:29:13 +00:00
|
|
|
0: {
|
|
|
|
|
text: t('backBase0Text'),
|
|
|
|
|
notes: t('backBase0Notes'),
|
|
|
|
|
value: 0,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
2019-10-08 14:57:10 +00:00
|
|
|
const body = {
|
2015-11-16 23:29:13 +00:00
|
|
|
0: {
|
|
|
|
|
text: t('bodyBase0Text'),
|
|
|
|
|
notes: t('bodyBase0Notes'),
|
|
|
|
|
value: 0,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
2019-10-08 14:57:10 +00:00
|
|
|
const eyewear = {
|
2015-11-16 23:29:13 +00:00
|
|
|
0: {
|
|
|
|
|
text: t('eyewearBase0Text'),
|
|
|
|
|
notes: t('eyewearBase0Notes'),
|
|
|
|
|
value: 0,
|
|
|
|
|
last: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
2019-10-08 14:57:10 +00:00
|
|
|
const head = {
|
2015-11-16 23:29:13 +00:00
|
|
|
0: {
|
|
|
|
|
text: t('headBase0Text'),
|
|
|
|
|
notes: t('headBase0Notes'),
|
|
|
|
|
value: 0,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
2019-10-08 14:57:10 +00:00
|
|
|
const headAccessory = {
|
2015-11-16 23:29:13 +00:00
|
|
|
0: {
|
|
|
|
|
text: t('headAccessoryBase0Text'),
|
|
|
|
|
notes: t('headAccessoryBase0Notes'),
|
|
|
|
|
value: 0,
|
|
|
|
|
last: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
2019-10-08 14:57:10 +00:00
|
|
|
const shield = {
|
2015-11-16 23:29:13 +00:00
|
|
|
0: {
|
|
|
|
|
text: t('shieldBase0Text'),
|
|
|
|
|
notes: t('shieldBase0Notes'),
|
|
|
|
|
value: 0,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
2019-10-08 14:57:10 +00:00
|
|
|
const weapon = {
|
2015-11-16 23:29:13 +00:00
|
|
|
0: {
|
|
|
|
|
text: t('weaponBase0Text'),
|
|
|
|
|
notes: t('weaponBase0Notes'),
|
|
|
|
|
value: 0,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
2019-10-01 15:53:48 +00:00
|
|
|
export {
|
2015-11-16 23:29:13 +00:00
|
|
|
armor,
|
|
|
|
|
back,
|
|
|
|
|
body,
|
|
|
|
|
eyewear,
|
|
|
|
|
head,
|
|
|
|
|
headAccessory,
|
|
|
|
|
shield,
|
|
|
|
|
weapon,
|
2019-10-08 14:57:10 +00:00
|
|
|
};
|