diff --git a/website/common/locales/en/backgrounds.json b/website/common/locales/en/backgrounds.json index 8a4981682d..7ca498733f 100644 --- a/website/common/locales/en/backgrounds.json +++ b/website/common/locales/en/backgrounds.json @@ -779,6 +779,15 @@ "backgroundSpringtimeLakeText": "Springtime Lake", "backgroundSpringtimeLakeNotes": "Take in the sights along the shores of a Springtime Lake.", + "backgrounds052022": "SET 96: Released May 2022", + "backgroundOnACastleWallText": "On A Castle Wall", + "backgroundOnACastleWallNotes": "Look out from on a castle wall.", + "backgroundCastleGateText": "Castle Gate", + "backgroundCastleGateNotes": "Stand guard at the castle gate.", + "backgroundEnchantedMusicRoomText": "Enchanted Music Room", + "backgroundEnchantedMusicRoomNotes": "Play in an enchated music room.", + + "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 2f134f7738..0210bea031 100644 --- a/website/common/locales/en/gear.json +++ b/website/common/locales/en/gear.json @@ -628,6 +628,8 @@ "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).", + "weaponArmoireHuntingHornText": "Hunting Horn", + "weaponArmoireHuntingHornNotes": "Twooooo! Twoo! Twoo! Gather your party for an adventure or quest by playing this horn. Increases strength by <%= str %> and intelligence by <%= int %>. Enchanted Armoire: Musical Instrument Set 1 (Item 1 of 3)", "armor": "armor", "armorCapitalized": "Armor", @@ -2426,6 +2428,10 @@ "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).", + "shieldArmoireSpanishGuitarText": "Spanish Guitar", + "shieldArmoireSpanishGuitarNotes": "Tink! Tink! Thrummm! Gather your party for a concert or celebration by playing this guitar. Increases perception by <%= per %> and intelligence by <%= int %>. Enchanted Armoire: Musical Instrument Set 1 (Item 2 of 3)", + "shieldArmoireSnareDrumText": "Snare Drum", + "shieldArmoireSnareDrumNotes": "Rat-a-tat-tat! Gather your party for a parade or march into battle by playing this drum. Increases constitution by <%= con %> and intelligence by <%= int %>. Enchanted Armoire: Musical Instrument Set 1 (Item 3 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 a7bb2d582e..20ac40b4b6 100644 --- a/website/common/script/content/appearance/backgrounds.js +++ b/website/common/script/content/appearance/backgrounds.js @@ -495,6 +495,11 @@ const backgrounds = { flower_shop: { }, springtime_lake: { }, }, + backgrounds052022: { + on_a_castle_wall: { }, + enchanted_music_room: { }, + castle_gate: { }, + }, 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 8a94df1d62..08a92cf612 100644 --- a/website/common/script/content/gear/sets/armoire.js +++ b/website/common/script/content/gear/sets/armoire.js @@ -1076,6 +1076,16 @@ const shield = { str: 8, set: 'gardenerSet', }, + spanishGuitar: { + per: 5, // this might need to go back to 6 + int: 6, + set: 'musicalInstrumentOne', + }, + snareDrum: { + con: 5, + int: 6, + set: 'musicalInstrumentOne', + }, }; const headAccessory = { @@ -1460,6 +1470,11 @@ const weapon = { int: 8, set: 'gardenerSet', }, + huntingHorn: { + str: 5, + int: 6, + set: 'musicalInstrumentOne', + }, }; forEach({