From bd9911fe61db8c60a46609345e61603fb06928b7 Mon Sep 17 00:00:00 2001 From: CuriousMagpie Date: Thu, 27 Jan 2022 12:58:53 -0500 Subject: [PATCH] updated armoire item strings --- website/common/locales/en/gear.json | 6 +++--- website/common/script/content/gear/sets/armoire.js | 5 +++++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/website/common/locales/en/gear.json b/website/common/locales/en/gear.json index 785e51ec9f..ff8ea4078e 100644 --- a/website/common/locales/en/gear.json +++ b/website/common/locales/en/gear.json @@ -616,7 +616,7 @@ "weaponArmoireShootingStarSpellText": "Stardust Sparkles", "weaponArmoireShootingStarSpellNotes": "Surround yourself in a spell of stardust magic to help you make all your wishes come true. Increases Strength and Intelligence by <%= attrs %> each. Enchanted Armoire: Stardust Set (Item 3 of 3).", "weaponArmoirePinkLongbowText": "Pink Longbow", - "weaponArmoirePinkLongbowNotes": "PLACEHOLDER", + "weaponArmoirePinkLongbowNotes": "Be a cupid-in-training, mastering both archery and matters of the heart with this beautiful bow. Increases Perception by <% = per %> and Strength by <%= str %>. Enchanted Armoire: Independent Item.", "armor": "armor", "armorCapitalized": "Armor", @@ -1299,7 +1299,7 @@ "armorArmoireShootingStarCostumeText": "Star Gown", "armorArmoireShootingStarCostumeNotes": "Rumored to have been spun out of the night sky itself, this flowy gown lets you rise above all obstacles in your path. Increases Constitution by <%= con %>. Enchanted Armoire: Stardust Set (Item 2 of 3).", "armorArmoireSoftVioletSuitText": "Soft Violet Suit", - "armorArmoireSoftVioletSuitNotes": "PLACEHOLDER. Violet Loungewear Set (Item 2 of 3).", + "armorArmoireSoftVioletSuitNotes": "Purple is a luxurious color. Relax in style after you’ve accomplished all your daily tasks. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Violet Loungewear Set (Item 2 of 3).", "headgear": "helm", "headgearCapitalized": "Headgear", @@ -2374,7 +2374,7 @@ "shieldArmoireSoftBlackPillowText": "Soft Black Pillow", "shieldArmoireSoftBlackPillowNotes": "The brave warrior packs a pillow for any expedition. Guard yourself from tiresome tasks... even while you nap. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Black Loungewear Set (Item 3 of 3).", "shieldArmoireSoftVioletPillowText": "Soft Violet Pillow", - "shieldArmoireSoftVioletPillowNotes": "PLACEHOLDER. Violet Loungewear Set (Item 3 of 3).", + "shieldArmoireSoftVioletPillowNotes": "The clever warrior packs a pillow for any expedition. Protect yourself from procrastination-induced panic... even while you nap. Increases Intelligence by <%= int %>. Enchanted Armoire: Violet Loungewear Set (Item 3 of 3).", "back": "Back Accessory", "backBase0Text": "No Back Accessory", diff --git a/website/common/script/content/gear/sets/armoire.js b/website/common/script/content/gear/sets/armoire.js index 2a1180c028..a7c23bf3c3 100644 --- a/website/common/script/content/gear/sets/armoire.js +++ b/website/common/script/content/gear/sets/armoire.js @@ -384,6 +384,8 @@ const armor = { set: 'shootingStar', }, softVioletSuit: { + con: 7, + str: 7, set: 'violetLoungewear', }, }; @@ -1050,6 +1052,7 @@ const shield = { set: 'blackLoungewear', }, softVioletPillow: { + int: 10, set: 'violetLoungewear', }, }; @@ -1428,6 +1431,8 @@ const weapon = { twoHanded: true, }, pinkLongbow: { + per: 6, + str: 5, twoHanded: true, }, };