diff --git a/website/common/locales/en/backgrounds.json b/website/common/locales/en/backgrounds.json index 828863293c8..9b5c46e8171 100644 --- a/website/common/locales/en/backgrounds.json +++ b/website/common/locales/en/backgrounds.json @@ -907,6 +907,13 @@ "backgroundRockGardenText": "Rock Garden", "backgroundRockGardenNotes": "Relax in a Rock Garden.", + "backgrounds092023": "SET 112: Released September 2023", + "backgroundMovingDayText": "Moving Day", + "backgroundMovingDayNotes": "Pack up for Moving Day.", + "backgroundCoveredBridgeInAutumnText": "Covered Bridge in Autumn", + "backgroundCoveredBridgeInAutumnNotes": "Traverse a Covered Bridge in Autumn.", + "backgroundBaobabForestText": "Baobab Forest", + "backgroundBaobabForestNotes": "Gaze in wonder at the Baobab Forest.", "timeTravelBackgrounds": "Steampunk Backgrounds", "backgroundAirshipText": "Airship", diff --git a/website/common/locales/en/gear.json b/website/common/locales/en/gear.json index 441995023e9..d47f001b8b9 100644 --- a/website/common/locales/en/gear.json +++ b/website/common/locales/en/gear.json @@ -707,6 +707,10 @@ "weaponArmoireFinelyCutGemNotes": "What a find! This stunning, precision-cut gem will be the prize of your collection. And it might contain some special magic, just waiting for you to tap into it. Increases Constitution by <%= con %>. Enchanted Armoire: Jeweler Set (Item 4 of 4).", "weaponArmoirePaintbrushText": "Paintbrush", "weaponArmoirePaintbrushNotes": "A jolt of pure inspiration rushes through you when you pick up this brush, allowing you to paint anything you can imagine. Increases Intelligence by <%= int %>. Enchanted Armoire: Painter Set (Item 3 of 4).", + "weaponArmoireMopText": "Mop", + "weaponArmoireMopNotes": "Step 1: Dunk the mop in a bucket of water and suds. Step 2: Drag the mop along the floor. Step 3: Pretend the end of the mop handle is a microphone and sing your heart out. Step 4: Repeat Steps 1-3 until floor is clean. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Cleaning Supplies Set Two (Item 2 of 3)", + "weaponArmoireCleaningClothText": "Cleaning Cloth", + "weaponArmoireCleaningClothNotes": "Take this tidying tool on your adventures and always be able to polish a pretty plaque or wipe a wooden windowsill. Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Cleaning Supplies Set Two (Item 3 of 3)", "armor": "armor", "armorCapitalized": "Armor", @@ -2707,6 +2711,8 @@ "shieldArmoireBasketballNotes": "Swish! Whenever you shoot this magic basketball, there will be nothing but net. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Old Timey Basketball Set (Item 2 of 2).", "shieldArmoirePaintersPaletteText": "Painter's Palette", "shieldArmoirePaintersPaletteNotes": "Paints in all colors of the rainbow are at your disposal. Is it magic that makes them so vivid when you use them, or is it your talent? Increases Strength by <%= str %>. Enchanted Armoire: Painter Set (Item 4 of 4).", + "shieldArmoireBucketText": "Bucket", + "shieldArmoireBucketNotes": "Though this bucket is helpful in holding a mixture of water and cleaning solution, you could also use it to collect, carry, and cart around just about anything that fits inside! Increases Strength and Intelligence by <%= attrs %> each. Enchanted Armoire: Cleaning Supplies Set 2 (Item 1 of 3)", "back": "Back Accessory", "backBase0Text": "No Back Accessory", diff --git a/website/common/script/content/appearance/backgrounds.js b/website/common/script/content/appearance/backgrounds.js index c42f28cdd70..1f558cb2722 100644 --- a/website/common/script/content/appearance/backgrounds.js +++ b/website/common/script/content/appearance/backgrounds.js @@ -575,6 +575,11 @@ const backgrounds = { dreamy_island: { }, rock_garden: { }, }, + backgrounds092023: { + moving_day: { }, + covered_bridge_in_autumn: { }, + baobab_forest: { }, + }, eventBackgrounds: { birthday_bash: { price: 0, diff --git a/website/common/script/content/gear/sets/armoire.js b/website/common/script/content/gear/sets/armoire.js index 6706b8ddd63..2bea5b9e54a 100644 --- a/website/common/script/content/gear/sets/armoire.js +++ b/website/common/script/content/gear/sets/armoire.js @@ -1233,6 +1233,11 @@ const shield = { str: 7, set: 'painters', }, + bucket: { + str: 4, + int: 4, + set: 'cleaningSuppliesTwo', + }, }; const headAccessory = { @@ -1679,6 +1684,16 @@ const weapon = { int: 8, set: 'painters', }, + mop: { + con: 4, + per: 4, + set: 'cleaningSuppliesTwo', + }, + cleaningCloth: { + str: 4, + con: 4, + set: 'cleaningSuppliesTwo', + }, }; forEach({