Files
habitica/website/common/script/content/gear/sets/special/special-takeThis.js
Blade Barringer 81b7eeeb71 Common reorg (#8025)
* Re-organize common folder

* fix: Correct paths in tests

* fix: move new content to proper folder

* chore: Move audio folder to assets

* Move sprites to sprites assets directory

* Move css sprites to assets directory

* Split out readmes for common code and sprites

* Move images to assets directory

* Move destinatin of shared browserified file

* remove unused file

* move compiled js to client-old

* Fix karma tests

* fix: Correct paths for sprites
2016-09-16 17:18:07 +02: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;