diff --git a/website/common/locales/en/gear.json b/website/common/locales/en/gear.json index d7b25196898..0573e1266d2 100644 --- a/website/common/locales/en/gear.json +++ b/website/common/locales/en/gear.json @@ -757,6 +757,8 @@ "weaponArmoireOptimistsCloverNotes": "Well, would you look at what you found? It never hurts to have just a little extra good luck on your side. Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Optimist Set (Item 4 of 4).", "weaponArmoirePottersWheelText": "Potter's Wheel", "weaponArmoirePottersWheelNotes": "Throw some clay on this wheel and make a bowl or a mug or a vase or a slightly different bowl. If you're lucky, a ghost might visit while you create! Increases Perception by <%= per %>. Enchanted Armoire: Potter Set (Item 4 of 4).", + "weaponArmoireShadyBeachUmbrellaText": "Beach Umbrella", + "weaponArmoireShadyBeachUmbrellaNotes": "The shade of this rainbow-colored umbrella conceals you briefly from the day star and any unwanted bothers. Increases Perception by <%= per %>. Enchanted Armoire: Beachside Set (Item 3 of 4).", "armor": "armor", "armorCapitalized": "Armor", @@ -1590,6 +1592,10 @@ "armorArmoireSmileyShirtNotes": "Because you’re happy! Show the world you’re all smiles today. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Optimist Set (Item 1 of 4).", "armorArmoirePottersApronText": "Potter's Apron", "armorArmoirePottersApronNotes": "You came prepared with tools of the trade. Good thing you wore this apron. It has pockets! Increases Strength by <%= str %>. Enchanted Armoire: Potter Set (Item 1 of 4).", + "armorArmoireYellowStripedSwimsuitText": "Yellow Striped Swimsuit", + "armorArmoireYellowStripedSwimsuitNotes": "What could be more delightful than battling sea monsters on the beach? Increases Constitution by <%= con %>. Enchanted Armoire: Beachside Set (Item 1 of 4).", + "armorArmoireBlueStripedSwimsuitText": "Blue Striped Swimsuit", + "armorArmoireBlueStripedSwimsuitNotes": "What could be more exciting than battling sea monsters on the beach? Increases Constitution by <%= con %>. Enchanted Armoire: Beachside Set (Item 2 of 4).", "headgear": "helm", "headgearCapitalized": "Headgear", @@ -2895,6 +2901,8 @@ "shieldArmoireHappyThoughtsNotes": "Whether you're remembering a joyful moment from your past or imagining the best outcome for the future, always look on the bright side of life. Increases all stats by <%= attrs %> each. Enchanted Armoire: Optimist Set (Item 3 of 4).", "shieldArmoireThrownVesselText": "Thrown Vessel", "shieldArmoireThrownVesselNotes": "You know what they say: practice makes progress. And this is the best one you’ve made so far! Increases Constitution by <%= con %>. Enchanted Armoire: Potter Set (Item 3 of 4).", + "shieldArmoireBuoyantBeachBallText": "Beachball", + "shieldArmoireBuoyantBeachBallNotes": "Got too many balls up in the air already? Here’s one that you can safely set down, roll, bounce and bounce and bounce... Increases Strength by <%= str %>. Enchanted Armoire: Beachside Set (Item 4 of 4).", "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 b74fb24d1a2..2a5412f4673 100644 --- a/website/common/script/content/gear/sets/armoire.js +++ b/website/common/script/content/gear/sets/armoire.js @@ -475,6 +475,14 @@ const armor = { str: 8, set: 'pottersSet', }, + yellowStripedSwimsuit: { + con: 13, + set: 'beachsideSet', + }, + blueStripedSwimsuit: { + con: 13, + set: 'beachsideSet', + }, }; const body = { @@ -1331,6 +1339,10 @@ const shield = { con: 8, set: 'pottersSet', }, + shadyBeachUmbrella: { + per: 12, + set: 'beachsideSet', + }, }; const headAccessory = { @@ -1813,6 +1825,10 @@ const weapon = { per: 8, set: 'pottersSet', }, + buoyantBeachBall: { + str: 12, + set: 'beachsideSet', + }, }; const releaseDates = { @@ -1824,6 +1840,7 @@ const releaseDates = { hatterSet: '2024-03-05T08:00-05:00', optimistSet: '2024-04-04T08:00-04:00', pottersSet: '2024-05-07T08:00-04:00', + beachsideSet: '2024-06-06T08:00-04:00', }; forEach({