diff --git a/website/common/locales/en/backgrounds.json b/website/common/locales/en/backgrounds.json index 6230ff2d8b..96f94b643a 100644 --- a/website/common/locales/en/backgrounds.json +++ b/website/common/locales/en/backgrounds.json @@ -659,6 +659,14 @@ "backgroundWintryCastleText": "Wintry Castle", "backgroundWintryCastleNotes": "Witness a Wintry Castle through the chilly mists.", + "backgrounds022021": "SET 81: Released February 2021", + "backgroundFlyingOverGlacierText": "Flying Over a Glacier", + "backgroundFlyingOverGlacierNotes": "Witness frozen majesty by Flying Over a Glacier.", + "backgroundHeartShapedBubblesText": "Heart-Shaped Bubbles", + "backgroundHeartShapedBubblesNotes": "Float cheerfully among Heart-Shaped Bubbles.", + "backgroundThroneRoomText": "Throne Room", + "backgroundThroneRoomNotes": "Grant an audience in your luxurious Throne 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 0d88abf3cb..178a44557b 100644 --- a/website/common/locales/en/gear.json +++ b/website/common/locales/en/gear.json @@ -1151,6 +1151,8 @@ "armorArmoireDressingGownNotes": "Relax in style with this beautiful traditional dressing gown. Increases Constitution by <%= con %>. Enchanted Armoire: Dressing Gown Set (Item 1 of 3).", "armorArmoireBlueMoonShozokuText": "Blue Moon Armor", "armorArmoireBlueMoonShozokuNotes": "A strange serenity surrounds the wearer of this armor. Increases Constitution by <%= con %>. Enchanted Armoire: Blue Moon Rogue Set (item 4 of 4).", + "armorArmoireSoftPinkSuitText": "Soft Pink Suit", + "armorArmoireSoftPinkSuitNotes": "Pink is a soothing color. Slip into this loungewear set for a bit of peace during the daily grind! Increases Perception by <%= per %>. Enchanted Armoire: Pink Loungewear Set (item 2 of 3).", "headgear": "helm", "headgearCapitalized": "Headgear", @@ -1784,6 +1786,8 @@ "headArmoireNightcapNotes": "Your new nightcap even has a nice bouncy pompom! Increases Perception by <%= per %>. Enchanted Armoire: Dressing Gown Set (Item 2 of 3).", "headArmoireBlueMoonHelmText": "Blue Moon Helm", "headArmoireBlueMoonHelmNotes": "This helm offers an astonishing amount of luck to its wearer, and exceptional events follow its use. Increases Intelligence by <%= int %>. Enchanted Armoire: Blue Moon Rogue Set (item 3 of 4).", + "headArmoirePinkFloppyHatText": "Pink Floppy Hat", + "headArmoirePinkFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a perfect pink color. Increases Intelligence by <%= int %>. Enchanted Armoire: Pink Loungewear Set (item 1 of 3).", "offhand": "off-hand item", "offhandCapitalized": "Off-Hand Item", @@ -2098,6 +2102,8 @@ "shieldArmoireDarkAutumnFlameNotes": "These mesmerizing flames dance with lively but foreboding energy even in autumn's chilliest nights. Increases Constitution by <%= con %>. Enchanted Armoire: Autumn Enchanter Set (Item 4 of 4).", "shieldArmoireBlueMoonSaiText": "Light Lunar Sai", "shieldArmoireBlueMoonSaiNotes": "This sai is a traditional weapon, imbued with the powers of the light side of the moon. Increases Perception by <%= per %>. Enchanted Armoire: Blue Moon Rogue Set (item 3 of 4).", + "shieldArmoireSoftPinkPillowText": "Soft Pink Pillow", + "shieldArmoireSoftPinkPillowNotes": "The sensible warrior packs a pillow for any expedition. Soften life's blows... even while you nap. Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Pink Loungewear Set (item 3 of 3).", "back": "Back Accessory", "backCapitalized": "Back Accessory", diff --git a/website/common/script/content/appearance/backgrounds.js b/website/common/script/content/appearance/backgrounds.js index 6c9749cf23..236bad5d56 100644 --- a/website/common/script/content/appearance/backgrounds.js +++ b/website/common/script/content/appearance/backgrounds.js @@ -420,6 +420,11 @@ const backgrounds = { icicle_bridge: { }, wintry_castle: { }, }, + backgrounds022021: { + flying_over_glacier: { }, + heart_shaped_bubbles: { }, + throne_room: { }, + }, 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 ad00980496..5cd158335b 100644 --- a/website/common/script/content/gear/sets/armoire.js +++ b/website/common/script/content/gear/sets/armoire.js @@ -342,6 +342,10 @@ const armor = { con: 8, set: 'blueMoon', }, + softPinkSuit: { + per: 12, + set: 'pinkLoungewear', + }, }; const body = { @@ -684,6 +688,10 @@ const head = { int: 8, set: 'blueMoon', }, + pinkFloppyHat: { + int: 12, + set: 'pinkLoungewear', + }, }; const shield = { @@ -877,6 +885,11 @@ const shield = { per: 8, set: 'blueMoon', }, + softPinkPillow: { + str: 6, + con: 6, + set: 'pinkLoungewear', + }, }; const headAccessory = { diff --git a/website/raw_sprites/spritesmith/backgrounds/background_flying_over_glacier.png b/website/raw_sprites/spritesmith/backgrounds/background_flying_over_glacier.png new file mode 100644 index 0000000000..5f6d95693e Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/background_flying_over_glacier.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/background_heart_shaped_bubbles.png b/website/raw_sprites/spritesmith/backgrounds/background_heart_shaped_bubbles.png new file mode 100644 index 0000000000..f6bc3642d1 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/background_heart_shaped_bubbles.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/background_throne_room.png b/website/raw_sprites/spritesmith/backgrounds/background_throne_room.png new file mode 100644 index 0000000000..511f0a5511 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/background_throne_room.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/broad_armor_armoire_softPinkSuit.png b/website/raw_sprites/spritesmith/gear/armoire/broad_armor_armoire_softPinkSuit.png new file mode 100644 index 0000000000..40734f5b06 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/broad_armor_armoire_softPinkSuit.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/head_armoire_pinkFloppyHat.png b/website/raw_sprites/spritesmith/gear/armoire/head_armoire_pinkFloppyHat.png new file mode 100644 index 0000000000..459b427f2b Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/head_armoire_pinkFloppyHat.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shield_armoire_softPinkPillow.png b/website/raw_sprites/spritesmith/gear/armoire/shield_armoire_softPinkPillow.png new file mode 100644 index 0000000000..ee765fa81e Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shield_armoire_softPinkPillow.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_softPinkSuit.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_softPinkSuit.png new file mode 100644 index 0000000000..b6c84da579 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_softPinkSuit.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_pinkFloppyHat.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_pinkFloppyHat.png new file mode 100644 index 0000000000..78b3c16790 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_pinkFloppyHat.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_softPinkPillow.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_softPinkPillow.png new file mode 100644 index 0000000000..1e8aedd431 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_softPinkPillow.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/slim_armor_armoire_softPinkSuit.png b/website/raw_sprites/spritesmith/gear/armoire/slim_armor_armoire_softPinkSuit.png new file mode 100644 index 0000000000..6f128028c1 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/slim_armor_armoire_softPinkSuit.png differ