diff --git a/website/common/locales/en/backgrounds.json b/website/common/locales/en/backgrounds.json index 18e47ea909..93c7c349c8 100644 --- a/website/common/locales/en/backgrounds.json +++ b/website/common/locales/en/backgrounds.json @@ -762,6 +762,14 @@ "backgroundIridescentCloudsText": "Iridescent Clouds", "backgroundIridescentCloudsNotes": "Float in Iridescent Clouds.", + "backgrounds032022": "SET 94: Released March 2022", + "backgroundAnimalsDenText": "Woodland Critter's Den", + "backgroundAnimalsDenNotes": "Cozy up in a Woodland Critter's Den.", + "backgroundBrickWallWithIvyText": "Brick Wall with Ivy", + "backgroundBrickWallWithIvyNotes": "Admire a Brick Wall with Ivy.", + "backgroundFloweringPrairieText": "Flowering Prairie", + "backgroundFloweringPrairieNotes": "Frolic through a Flowering Prairie.", + "timeTravelBackgrounds": "Steampunk Backgrounds", "backgroundAirshipText": "Airship", "backgroundAirshipNotes": "Become a sky sailor on board your very own Airship.", diff --git a/website/common/locales/en/gear.json b/website/common/locales/en/gear.json index a736cd6b83..5c3b23323e 100644 --- a/website/common/locales/en/gear.json +++ b/website/common/locales/en/gear.json @@ -617,6 +617,8 @@ "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": "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.", + "weaponArmoireGardenersWateringCanText": "Watering Can", + "weaponArmoireGardenersWateringCanNotes": "You can’t get far without water! Have an infinite supply on hand with this magic, refilling watering can. Increases Intelligence by <%= int %>. Enchanted Armoire: Gardener Set (Item 4 of 4).", "armor": "armor", "armorCapitalized": "Armor", @@ -1303,6 +1305,8 @@ "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": "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).", + "armorArmoireGardenersOverallsText": "Gardener's Overalls", + "armorArmoireGardenersOverallsNotes": "Don’t be afraid to work down in the dirt when you’re wearing these durable overalls. Increases Constitution by <%= con %>. Enchanted Armoire: Gardener Set (Item 1 of 4).", "headgear": "helm", "headgearCapitalized": "Headgear", @@ -2010,6 +2014,8 @@ "headArmoireRegalCrownNotes": "Any monarch would be lucky to have such a majestic, smart-looking crown. Increases Intelligence by <%= int %>. Enchanted Armoire: Regal Set (Item 1 of 2).", "headArmoireShootingStarCrownText": "Star Crown", "headArmoireShootingStarCrownNotes": "With this brightly shining headpiece, you will literally be the star of your own adventure! Increases Perception by <%= per %>. Enchanted Armoire: Stardust Set (Item 1 of 3).", + "headArmoireGardenersSunHatText": "Gardener's Sun Hat", + "headArmoireGardenersSunHatNotes": "The bright light of the day star won’t shine in your eyes when you wear this wide-brimmed hat. Increases Perception by <%= per %>. Enchanted Armoire: Gardener Set (Item 2 of 4).", "offhand": "off-hand item", "offHandCapitalized": "Off-Hand Item", @@ -2380,6 +2386,8 @@ "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": "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).", + "shieldArmoireGardenersSpadeText": "Gardener's Spade", + "shieldArmoireGardenersSpadeNotes": "Whether you’re digging in the garden, searching for buried treasure, or creating a secret tunnel, this trusty spade is at your side. Increases Strength by <%= str %>. Enchanted Armoire: Gardener Set (Item 3 of 4).", "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 ceae8bd7e7..85e7228013 100644 --- a/website/common/script/content/appearance/backgrounds.js +++ b/website/common/script/content/appearance/backgrounds.js @@ -485,6 +485,11 @@ const backgrounds = { orange_grove: { }, iridescent_clouds: { }, }, + backgrounds032022: { + animals_den: { }, + brick_wall_with_ivy: { }, + flowering_prairie: { }, + }, timeTravelBackgrounds: { airship: { price: 1, diff --git a/website/common/script/content/gear/sets/armoire.js b/website/common/script/content/gear/sets/armoire.js index 58752c8ec6..544d4f2c90 100644 --- a/website/common/script/content/gear/sets/armoire.js +++ b/website/common/script/content/gear/sets/armoire.js @@ -388,6 +388,10 @@ const armor = { str: 7, set: 'violetLoungewear', }, + gardenersOveralls: { + con: 7, + set: 'gardenerSet', + }, }; const body = { @@ -787,6 +791,10 @@ const head = { per: 10, set: 'shootingStar', }, + gardenersSunHat: { + per: 7, + set: 'gardenerSet', + }, }; const shield = { @@ -1056,6 +1064,10 @@ const shield = { int: 10, set: 'violetLoungewear', }, + gardenersSpade: { + str: 8, + set: 'gardenerSet', + }, }; const headAccessory = { @@ -1436,6 +1448,10 @@ const weapon = { str: 5, twoHanded: true, }, + gardenersWateringCan: { + int: 8, + set: 'gardenerSet', + }, }; forEach({