feat(content): Armoire items and backgrounds 5/19

This commit is contained in:
Sabe Jones
2019-05-07 15:56:51 -05:00
parent 0a840ca952
commit b2dabcaf98
20 changed files with 63 additions and 11 deletions

View File

@@ -829,6 +829,20 @@ let backgrounds = {
notes: t('backgroundBirchForestNotes'),
},
},
backgrounds052019: {
dojo: {
text: t('backgroundDojoText'),
notes: t('backgroundDojoNotes'),
},
park_with_statue: {
text: t('backgroundParkWithStatueText'),
notes: t('backgroundParkWithStatueNotes'),
},
rainbow_meadow: {
text: t('backgroundRainbowMeadowText'),
notes: t('backgroundRainbowMeadowNotes'),
},
},
incentiveBackgrounds: {
violet: {
text: t('backgroundVioletText'),

View File

@@ -453,6 +453,15 @@ let armor = {
set: 'vernalVestments',
canOwn: ownsItem('armor_armoire_vernalVestment'),
},
nephriteArmor: {
text: t('armorArmoireNephriteArmorText'),
notes: t('armorArmoireNephriteArmorNotes', { str: 7, per: 6 }),
value: 100,
str: 7,
per: 6,
set: 'nephrite',
canOwn: ownsItem('armor_armoire_nephriteArmor'),
},
};
let body = {
@@ -931,6 +940,15 @@ let head = {
per: 10,
canOwn: ownsItem('head_armoire_tricornHat'),
},
nephriteHelm: {
text: t('headArmoireNephriteHelmText'),
notes: t('headArmoireNephriteHelmNotes', { per: 7, int: 6 }),
value: 100,
per: 7,
int: 6,
set: 'nephrite',
canOwn: ownsItem('head_armoire_nephriteHelm'),
},
};
let shield = {
@@ -1574,6 +1592,16 @@ let weapon = {
str: 10,
canOwn: ownsItem('weapon_armoire_slingshot'),
},
nephriteBow: {
text: t('weaponArmoireNephriteBowText'),
notes: t('weaponArmoireNephriteBowNotes', { int: 7, str: 6 }),
value: 100,
int: 7,
str: 6,
set: 'nephrite',
twoHanded: true,
canOwn: ownsItem('weapon_armoire_nephriteBow'),
},
};
let armoireSet = {