diff --git a/website/common/locales/en/backgrounds.json b/website/common/locales/en/backgrounds.json index dfa94fdf08..d81865a72a 100644 --- a/website/common/locales/en/backgrounds.json +++ b/website/common/locales/en/backgrounds.json @@ -635,6 +635,14 @@ "backgroundSpookyScarecrowFieldText": "Spooky Scarecrow Field", "backgroundSpookyScarecrowFieldNotes": "Prove you're more daring than a bird by braving a Spooky Scarecrow Field.", + "backgrounds112020": "SET 78: Released November 2020", + "backgroundMysticalObservatoryText": "Mystical Observatory", + "backgroundMysticalObservatoryNotes": "Read your destiny in the stars from a Mystical Observatory.", + "backgroundRestingInTheInnText": "Resting in the Inn", + "backgroundRestingInTheInnNotes": "Work from the comfort and safety of your room while Resting in the Inn.", + "backgroundRiverOfLavaText": "River of Lava", + "backgroundRiverOfLavaNotes": "Defy convection taking a stroll along a River of Lava.", + "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 cc0802a62c..57523fee76 100644 --- a/website/common/locales/en/gear.json +++ b/website/common/locales/en/gear.json @@ -516,6 +516,8 @@ "weaponArmoireGuardiansCrookNotes": "This shepherd's crook could come in handy next time you take your Pets for a stroll in the countryside... Increases Strength by <%= str %>. Enchanted Armoire: Guardian of the Grazers Set (Item 2 of 3).", "weaponArmoireEnchantersStaffText": "Enchanter's Staff", "weaponArmoireEnchantersStaffNotes": "The green stones on this staff are filled with the power of change that flows strong through the autumn wind. Increases Perception by <%= per %>. Enchanted Armoire: Autumn Enchanter Set (Item 3 of 4).", + "weaponArmoireClubOfClubsText": "Club of... Clubs", + "weaponArmoireClubOfClubsNotes": "This stylish club won't tip your hand too early about your intentions toward those sneaky old tasks. Increases Strength by <%= str %>. Enchanted Armoire: Jack of Clubs Set (Item 2 of 3).", "armor": "armor", "armorCapitalized": "Armor", @@ -1110,6 +1112,8 @@ "armorArmoireGuardiansGownNotes": "A lovely rustic gown, with surprisingly sturdy seams! Increases Intelligence by <%= int %>. Enchanted Armoire: Guardian of the Grazers Set (Item 3 of 3).", "armorArmoireAutumnEnchantersCloakText": "Autumn Enchanter's Cloak", "armorArmoireAutumnEnchantersCloakNotes": "A sorcerer as skilled as you needs to look as powerful as they feel. Increases Intelligence by 12. Enchanted Armoire: Autumn Enchanter Set (Item 2 of 4).", + "armorArmoireDoubletOfClubsText": "Doublet Of Clubs", + "armorArmoireDoubletOfClubsNotes": "Who knows what's in the cards, but you'll look stylish at any event in this doublet and cape! Increases Constitution by <%= con %>. Enchanted Armoire: Jack of Clubs Set (Item 3 of 3).", "headgear": "helm", "headgearCapitalized": "Headgear", @@ -1724,6 +1728,8 @@ "headArmoireGuardiansBonnetNotes": "Don this fetching bonnet to help you herd your tasks! Increases Constitution by <%= con %>. Enchanted Armoire: Guardian of the Grazers Set (Item 1 of 3).", "headArmoireHornsOfAutumnText": "Horns of Autumn", "headArmoireHornsOfAutumnNotes": "Draw the power of the season's brisk air and channel it through your magic! Increases Strength by <%= str %>. Enchanted Armoire: Autumn Enchanter Set (Item 1 of 4).", + "headArmoireCapOfClubsText": "Cap of Clubs", + "headArmoireCapOfClubsNotes": "Let everyone know about your latest achievements with this literal feather in your cap! Increases Intelligence by <%= int %>. Enchanted Armoire: Jack of Clubs Set (Item 1 of 3).", "offhand": "off-hand item", "offhandCapitalized": "Off-Hand Item", diff --git a/website/common/script/content/appearance/backgrounds.js b/website/common/script/content/appearance/backgrounds.js index 5102dcd4ea..cbd697a2d9 100644 --- a/website/common/script/content/appearance/backgrounds.js +++ b/website/common/script/content/appearance/backgrounds.js @@ -405,6 +405,11 @@ const backgrounds = { haunted_forest: { }, spooky_scarecrow_field: { }, }, + backgrounds112020: { + mystical_observatory: { }, + resting_in_the_inn: { }, + river_of_lava: { }, + }, 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 499439d0ae..fd251d076c 100644 --- a/website/common/script/content/gear/sets/armoire.js +++ b/website/common/script/content/gear/sets/armoire.js @@ -330,6 +330,10 @@ const armor = { int: 12, set: 'autumnEnchanter', }, + doubletOfClubs: { + con: 10, + set: 'jackOfClubs', + }, }; const body = { @@ -660,6 +664,10 @@ const head = { str: 12, set: 'autumnEnchanter', }, + capOfClubs: { + int: 10, + set: 'jackOfClubs', + }, }; const shield = { @@ -1131,6 +1139,10 @@ const weapon = { per: 12, set: 'autumnEnchanter', }, + clubOfClubs: { + str: 10, + set: 'jackOfClubs', + }, }; forEach({ diff --git a/website/raw_sprites/spritesmith/backgrounds/background_mystical_observatory.png b/website/raw_sprites/spritesmith/backgrounds/background_mystical_observatory.png new file mode 100644 index 0000000000..af51bcd148 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/background_mystical_observatory.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/background_resting_in_the_inn.png b/website/raw_sprites/spritesmith/backgrounds/background_resting_in_the_inn.png new file mode 100644 index 0000000000..5319dcec95 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/background_resting_in_the_inn.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/background_river_of_lava.png b/website/raw_sprites/spritesmith/backgrounds/background_river_of_lava.png new file mode 100644 index 0000000000..3f7d0957dd Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/background_river_of_lava.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_mystical_observatory.png b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_mystical_observatory.png new file mode 100644 index 0000000000..78057f5d0e Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_mystical_observatory.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_resting_in_the_inn.png b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_resting_in_the_inn.png new file mode 100644 index 0000000000..f6f8b02040 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_resting_in_the_inn.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_river_of_lava.png b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_river_of_lava.png new file mode 100644 index 0000000000..c311282b33 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_river_of_lava.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/broad_armor_armoire_doubletOfClubs.png b/website/raw_sprites/spritesmith/gear/armoire/broad_armor_armoire_doubletOfClubs.png new file mode 100644 index 0000000000..99ec16dc4c Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/broad_armor_armoire_doubletOfClubs.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/head_armoire_capOfClubs.png b/website/raw_sprites/spritesmith/gear/armoire/head_armoire_capOfClubs.png new file mode 100644 index 0000000000..805bdd9e1f Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/head_armoire_capOfClubs.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_doubletOfClubs.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_doubletOfClubs.png new file mode 100644 index 0000000000..b17d34bc6e Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_doubletOfClubs.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_capOfClubs.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_capOfClubs.png new file mode 100644 index 0000000000..095ce92e0c Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_capOfClubs.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_clubOfClubs.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_clubOfClubs.png new file mode 100644 index 0000000000..8150302a1e Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_clubOfClubs.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/slim_armor_armoire_doubletOfClubs.png b/website/raw_sprites/spritesmith/gear/armoire/slim_armor_armoire_doubletOfClubs.png new file mode 100644 index 0000000000..7c03a2ed87 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/slim_armor_armoire_doubletOfClubs.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/weapon_armoire_clubOfClubs.png b/website/raw_sprites/spritesmith/gear/armoire/weapon_armoire_clubOfClubs.png new file mode 100644 index 0000000000..f27840782d Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/weapon_armoire_clubOfClubs.png differ