diff --git a/website/common/locales/en/backgrounds.json b/website/common/locales/en/backgrounds.json index 2f8703081c..65e4416805 100644 --- a/website/common/locales/en/backgrounds.json +++ b/website/common/locales/en/backgrounds.json @@ -723,6 +723,14 @@ "backgroundAutumnLakeshoreText": "Autumn Lakeshore", "backgroundAutumnLakeshoreNotes": "Pause at an Autumn Lakeshore to appreciate the reflection of woods on water.", + "backgrounds102021": "SET 89: Released October 2021", + "backgroundCrypticCandlesText": "Cryptic Candles", + "backgroundCrypticCandlesNotes": "Summon arcane forces among Cryptic Candles.", + "backgroundHauntedPhotoText": "Haunted Photo", + "backgroundHauntedPhotoNotes": "Find yourself trapped in the monochrome world of a Haunted Photo.", + "backgroundUndeadHandsText": "Undead Hands", + "backgroundUndeadHandsNotes": "Try to escape from the clutches of Undead Hands.", + "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 0b7388a5e9..d090e851ea 100644 --- a/website/common/locales/en/gear.json +++ b/website/common/locales/en/gear.json @@ -573,6 +573,8 @@ "weaponArmoireBuoyantBubblesNotes": "These bubbles just keep on floating forever, somehow... Increases Perception by <%= per %>. Enchanted Armoire: Bubble Bath Set (Item 3 of 4).", "weaponArmoireHeraldsBuisineText": "Herald's Buisine", "weaponArmoireHeraldsBuisineNotes": "Any announcement will sound so much better following fanfare from this trumpet. Increases Strength by <%= str %>. Enchanted Armoire: Herald Set (Item 3 of 4).", + "weaponArmoireSkullLanternText": "Skull Lantern", + "weaponArmoireSkullLanternNotes": "Let its glow be your guide throughout the darkest nights of your adventures. Increases Intelligence by <%= int %>. Enchanted Armoire: Independent Item.", "armor": "armor", "armorCapitalized": "Armor", @@ -1239,6 +1241,8 @@ "armorArmoireBagpipersKiltNotes": "A good sturdy kilt will serve you well. Increases Constitution by <%= con %>. Enchanted Armoire: Bagpiper Set (Item 2 of 3).", "armorArmoireHeraldsTunicText": "Herald's Tunic", "armorArmoireHeraldsTunicNotes": "Get ready to spread good news far and wide in this colorful, royal outfit. Increases Constitution by <%= con %>. Enchanted Armoire: Herald Set (Item 1 of 4).", + "armorArmoireSoftBlackSuitText": "Soft Black Suit", + "armorArmoireSoftBlackSuitNotes": "Black is a mysterious colour. It’s sure to inspire the most interesting dreams. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Black Loungewear Set (Item 2 of 3).", "headgear": "helm", "headgearCapitalized": "Headgear", @@ -1925,6 +1929,8 @@ "headArmoireGlengarryNotes": "A traditional cap full of pride and history. Increases Intelligence by <%= int %>. Enchanted Armoire: Bagpiper Set (Item 1 of 3).", "headArmoireHeraldsCapText": "Herald's Cap", "headArmoireHeraldsCapNotes": "This herald’s hat includes a perky plume. Increases Intelligence by <%= int %>. Enchanted Armoire: Herald Set (Item 2 of 4).", + "headArmoireBlackFloppyHatText": "Black Floppy Hat", + "headArmoireBlackFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a bold black color. Increases Constitution, Perception, and Strength by <%= attrs %> each. Enchanted Armoire: Black Loungewear Set (Item 1 of 3).", "offhand": "off-hand item", "offhandCapitalized": "Off-Hand Item", @@ -2286,6 +2292,8 @@ "shieldArmoireBagpipesNotes": "The uncharitable might say you're planning to wake the dead with these bagpipes -- but you know you're just motivating your Party to success! Increases Strength by <%= str %>. Enchanted Armoire: Bagpiper Set (Item 3 of 3).", "shieldArmoireHeraldsMessageScrollText": "Herald's Message Scroll", "shieldArmoireHeraldsMessageScrollNotes": "What exciting news does this scroll contain? Could it be about a new pet or a long habit streak? Increases Perception by <%= per %>. Enchanted Armoire: Herald Set (Item 4 of 4)", + "shieldArmoireSoftBlackPillowText": "Soft Black Pillow", + "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).", "back": "Back Accessory", "backCapitalized": "Back Accessory", @@ -2623,7 +2631,7 @@ "eyewearMystery201907Text": "Sweet Sunglasses", "eyewearMystery201907Notes": "Look awesome while protecting your eyes from harmful UV rays! Confers no benefit. July 2019 Subscriber Item.", "eyewearMystery202108Text": "Fiery Eyes", - "eyewearMystery202108Notes": "Stare down your enemies (or your biggest tasks!) with these and they don't stand a chance. Confers no benefit. August 2021 Subscriber Item. ", + "eyewearMystery202108Notes": "Stare down your enemies (or your biggest tasks!) with these and they don't stand a chance. Confers no benefit. August 2021 Subscriber Item.", "eyewearMystery301404Text": "Eyewear Goggles", "eyewearMystery301404Notes": "No eyewear could be fancier than a pair of goggles - except, perhaps, for a monocle. Confers no benefit. April 3015 Subscriber Item.", "eyewearMystery301405Text": "Monocle", diff --git a/website/common/script/content/appearance/backgrounds.js b/website/common/script/content/appearance/backgrounds.js index 21c268ff64..5cfbd26438 100644 --- a/website/common/script/content/appearance/backgrounds.js +++ b/website/common/script/content/appearance/backgrounds.js @@ -460,6 +460,11 @@ const backgrounds = { autumn_poplars: { }, vineyard: { }, }, + backgrounds102021: { + cryptic_candles: { }, + haunted_photo: { }, + undead_hands: { }, + }, 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 2b1244a4e9..19063d6bf2 100644 --- a/website/common/script/content/gear/sets/armoire.js +++ b/website/common/script/content/gear/sets/armoire.js @@ -374,6 +374,11 @@ const armor = { con: 6, set: 'herald', }, + softBlackSuit: { + con: 7, + per: 7, + set: 'blackLoungewear', + }, }; const body = { @@ -758,6 +763,12 @@ const head = { int: 6, set: 'herald', }, + blackFloppyHat: { + con: 7, + per: 7, + str: 7, + set: 'blackLoungewear', + }, }; const shield = { @@ -1018,6 +1029,11 @@ const shield = { per: 6, set: 'herald', }, + softBlackPillow: { + int: 5, + per: 5, + set: 'blackLoungewear', + }, }; const headAccessory = { @@ -1328,6 +1344,9 @@ const weapon = { str: 6, set: 'herald', }, + skullLantern: { + int: 10, + }, }; forEach({ diff --git a/website/raw_sprites/spritesmith/backgrounds/background_cryptic_candles.png b/website/raw_sprites/spritesmith/backgrounds/background_cryptic_candles.png new file mode 100644 index 0000000000..3928dc935b Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/background_cryptic_candles.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/background_haunted_photo.png b/website/raw_sprites/spritesmith/backgrounds/background_haunted_photo.png new file mode 100644 index 0000000000..e69a20d4da Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/background_haunted_photo.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/background_undead_hands.png b/website/raw_sprites/spritesmith/backgrounds/background_undead_hands.png new file mode 100644 index 0000000000..29f5e92f44 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/background_undead_hands.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_cryptic_candles.png b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_cryptic_candles.png new file mode 100644 index 0000000000..90ab9df1b5 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_cryptic_candles.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_haunted_photo.png b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_haunted_photo.png new file mode 100644 index 0000000000..fe699b2be8 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_haunted_photo.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_undead_hands.png b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_undead_hands.png new file mode 100644 index 0000000000..a5e10bf951 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_undead_hands.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/broad_armor_armoire_softBlackSuit.png b/website/raw_sprites/spritesmith/gear/armoire/broad_armor_armoire_softBlackSuit.png new file mode 100644 index 0000000000..7b24bddf22 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/broad_armor_armoire_softBlackSuit.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/head_armoire_blackFloppyHat.png b/website/raw_sprites/spritesmith/gear/armoire/head_armoire_blackFloppyHat.png new file mode 100644 index 0000000000..787cafd30b Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/head_armoire_blackFloppyHat.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shield_armoire_softBlackPillow.png b/website/raw_sprites/spritesmith/gear/armoire/shield_armoire_softBlackPillow.png new file mode 100644 index 0000000000..ead1d5195e Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shield_armoire_softBlackPillow.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_softBlackSuit.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_softBlackSuit.png new file mode 100644 index 0000000000..fb6a93556d Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_softBlackSuit.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_blackFloppyHat.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_blackFloppyHat.png new file mode 100644 index 0000000000..cc16e6f7da Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_blackFloppyHat.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_softBlackPillow.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_softBlackPillow.png new file mode 100644 index 0000000000..e948cf0c87 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_softBlackPillow.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_skullLantern.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_skullLantern.png new file mode 100644 index 0000000000..09d47de66f Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_skullLantern.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/slim_armor_armoire_softBlackSuit.png b/website/raw_sprites/spritesmith/gear/armoire/slim_armor_armoire_softBlackSuit.png new file mode 100644 index 0000000000..8fc330c1fa Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/slim_armor_armoire_softBlackSuit.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/weapon_armoire_skullLantern.png b/website/raw_sprites/spritesmith/gear/armoire/weapon_armoire_skullLantern.png new file mode 100644 index 0000000000..906c7b8177 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/weapon_armoire_skullLantern.png differ