feat(content): Armoire and Backgrounds 201809

This commit is contained in:
Sabe Jones
2018-09-04 16:24:04 -05:00
parent a9340ee60f
commit 4e2c08cfed
25 changed files with 92 additions and 20 deletions

View File

@@ -717,6 +717,20 @@ let backgrounds = {
notes: t('backgroundBridgeNotes'),
},
},
backgrounds092018: {
apple_picking: {
text: t('backgroundApplePickingText'),
notes: t('backgroundApplePickingNotes'),
},
giant_book: {
text: t('backgroundGiantBookText'),
notes: t('backgroundGiantBookNotes'),
},
cozy_barn: {
text: t('backgroundCozyBarnText'),
notes: t('backgroundCozyBarnNotes'),
},
},
incentiveBackgrounds: {
violet: {
text: t('backgroundVioletText'),

View File

@@ -383,6 +383,15 @@ let armor = {
set: 'jeweledArcher',
canOwn: ownsItem('armor_armoire_JeweledArcherArmor'),
},
coverallsOfBookbinding: {
text: t('armorArmoireCoverallsOfBookbindingText'),
notes: t('armorArmoireCoverallsOfBookbindingNotes', { con: 10, per: 5 }),
value: 100,
con: 10,
per: 5,
set: 'bookbinder',
canOwn: ownsItem('armor_armoire_coverallsOfBookbinding'),
},
};
let body = {
@@ -1032,6 +1041,14 @@ let shield = {
set: 'piraticalPrincess',
canOwn: ownsItem('shield_armoire_piraticalSkullShield'),
},
unfinishedTome: {
text: t('shieldArmoireUnfinishedTomeText'),
notes: t('shieldArmoireUnfinishedTomeNotes', { int: 10 }),
value: 100,
int: 10,
set: 'bookbinder',
canOwn: ownsItem('shield_armoire_unfinishedTome'),
},
};
let headAccessory = {
@@ -1042,6 +1059,14 @@ let headAccessory = {
str: 10,
canOwn: ownsItem('headAccessory_armoire_comicalArrow'),
},
gogglesOfBookbinding: {
text: t('headAccessoryArmoireGogglesOfBookbindingText'),
notes: t('headAccessoryArmoireGogglesOfBookbindingNotes', { per: 8 }),
value: 100,
per: 8,
set: 'bookbinder',
canOwn: ownsItem('headAccessory_armoire_gogglesOfBookbinding'),
},
};
let weapon = {
@@ -1356,7 +1381,15 @@ let weapon = {
value: 100,
int: 15,
set: 'jeweledArcher',
canOwn: ownsItem('weapon_armoire_JeweledArcherBow'),
canOwn: ownsItem('weapon_armoire_jeweledArcherBow'),
},
needleOfBookbinding: {
text: t('weaponArmoireNeedleOfBookbindingText'),
notes: t('weaponArmoireNeedleOfBookbindingNotes', { str: 8 }),
value: 100,
str: 8,
set: 'bookbinder',
canOwn: ownsItem('weapon_armoire_needleOfBookbinding'),
},
};