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
+9 -1
View File
@@ -489,5 +489,13 @@
"backgroundHalflingsHouseText": "Halfling's House",
"backgroundHalflingsHouseNotes": "Visit a charming Halfling's House.",
"backgroundBlossomingDesertText": "Blossoming Desert",
"backgroundBlossomingDesertNotes": "Witness a rare superbloom in the Blossoming Desert."
"backgroundBlossomingDesertNotes": "Witness a rare superbloom in the Blossoming Desert.",
"backgrounds052019": "SET 60: Released May 2019",
"backgroundDojoText": "Dojo",
"backgroundDojoNotes": "Learn new moves in a Dojo.",
"backgroundParkWithStatueText": "Park with Statue",
"backgroundParkWithStatueNotes": "Follow a flower-lined path through a Park with a Statue.",
"backgroundRainbowMeadowText": "Rainbow Meadow",
"backgroundRainbowMeadowNotes": "Find the pot of gold where a Rainbow ends in a Meadow."
}
+6
View File
@@ -422,6 +422,8 @@
"weaponArmoireJugglingBallsNotes": "Habiticans are master multi-taskers, so you should have no trouble keeping all these balls in the air! Increases Intelligence by <%= int %>. Enchanted Armoire: Independent Item.",
"weaponArmoireSlingshotText": "Slingshot",
"weaponArmoireSlingshotNotes": "Take aim at your red Dailies! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.",
"weaponArmoireNephriteBowText": "Nephrite Bow",
"weaponArmoireNephriteBowNotes": "This bow shoots special jade-tipped arrows that will take down even your most stubborn bad habits! Increases Intelligence by <%= int %> and Strength by <%= str %>. Enchanted Armoire: Nephrite Archer Set (Item 1 of 3).",
"armor": "armor",
"armorCapitalized": "Armor",
@@ -912,6 +914,8 @@
"armorArmoireChefsJacketNotes": "This thick cotton jacket is double-breasted to protect you from spills (and conveniently reversible…). Increases Intelligence by <%= int %>. Enchanted Armoire: Chef Set (Item 2 of 4).",
"armorArmoireVernalVestmentText": "Vernal Vestment",
"armorArmoireVernalVestmentNotes": "This silky garment is perfect for enjoying mild spring weather in style. Increases Strength and Intelligence by <%= attrs %> each. Enchanted Armoire: Vernal Vestments Set (Item 2 of 3).",
"armorArmoireNephriteArmorText": "Nephrite Armor",
"armorArmoireNephriteArmorNotes": "Made from strong steel rings and decorated with jade, this armor will protect you from procrastination! Increases Strength by <%= str %> and Perception by <%= per %>. Enchanted Armoire: Nephrite Archer Set (Item 3 of 3).",
"headgear": "helm",
"headgearCapitalized": "Headgear",
@@ -1416,6 +1420,8 @@
"headArmoireVernalHenninNotes": "More than just a pretty hat, this conical chapeau can also hold a rolled-up To-Do list inside. Increases Perception by <%= per %>. Enchanted Armoire: Vernal Vestments Set (Item 1 of 3).",
"headArmoireTricornHatText": "Tricorn Hat",
"headArmoireTricornHatNotes": "Become a revolutionary jokester! Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.",
"headArmoireNephriteHelmText": "Nephrite Helm",
"headArmoireNephriteHelmNotes": "The carved jade plume atop this helm is enchanted to enhance your aim. Increases Perception by <%= per %> and Intelligence by <%= int %>. Enchanted Armoire: Nephrite Archer Set (Item 2 of 3).",
"offhand": "off-hand item",
"offhandCapitalized": "Off-Hand Item",
@@ -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'),
@@ -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 = {