diff --git a/website/common/locales/en/backgrounds.json b/website/common/locales/en/backgrounds.json index 5c51eba009..2f8703081c 100644 --- a/website/common/locales/en/backgrounds.json +++ b/website/common/locales/en/backgrounds.json @@ -715,6 +715,14 @@ "backgroundDaytimeMistyForestText": "Misty Forest", "backgroundDaytimeMistyForestNotes": "Bathe in the glow of daylight streaming through a Misty Forest.", + "backgrounds092021": "SET 88: Released September 2021", + "backgroundVineyardText": "Vineyard", + "backgroundVineyardNotes": "Explore the sprawl of a fruitful Vineyard.", + "backgroundAutumnPoplarsText": "Autumn Poplar Forest", + "backgroundAutumnPoplarsNotes": "Delight in the brilliant shades of brown and gold in an Autumn Poplar Forest.", + "backgroundAutumnLakeshoreText": "Autumn Lakeshore", + "backgroundAutumnLakeshoreNotes": "Pause at an Autumn Lakeshore to appreciate the reflection of woods on water.", + "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 e963333105..08d7217c52 100644 --- a/website/common/locales/en/gear.json +++ b/website/common/locales/en/gear.json @@ -562,6 +562,8 @@ "weaponArmoireMedievalWashboardNotes": "Scrub-a-dub-dub! It's time to apply some elbow grease and get that laundry clean. Increases Strength by <%= str %>. Enchanted Armoire: Medieval Launderers Set (Item 5 of 6).", "weaponArmoireBuoyantBubblesText": "Buoyant Bubbles", "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).", "armor": "armor", "armorCapitalized": "Armor", @@ -1215,6 +1217,8 @@ "armorArmoireBathtubNotes": "Time for a little R&R? Here's your own personal bathtub -- and a guarantee that the water is always the right temperature! Increases Constitution by <%= con %>. Enchanted Armoire: Bubble Bath Set (Item 2 of 4).", "armorArmoireBagpipersKiltText": "Bagpiper's Kilt", "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 (Item1 of 4).", "headgear": "helm", "headgearCapitalized": "Headgear", @@ -1888,6 +1892,8 @@ "headArmoireRubberDuckyNotes": "The perfect companion for an indulgent spa day! Also surprisingly knowledgeable about a range of software issues. Increases Intelligence by <%= int %>. Enchanted Armoire: Bubble Bath Set (Item 1 of 4).", "headArmoireGlengarryText": "Glengarry", "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).", "offhand": "off-hand item", "offhandCapitalized": "Off-Hand Item", @@ -2242,6 +2248,8 @@ "shieldArmoireBouncyBubblesNotes": "Complete your relaxing bath with these exuberant bubbles! Increases Strength by <%= str %>. Enchanted Armoire: Bubble Bath Set (Item 4 of 4).", "shieldArmoireBagpipesText": "Bagpipes", "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)", "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 99de71a97a..21c268ff64 100644 --- a/website/common/script/content/appearance/backgrounds.js +++ b/website/common/script/content/appearance/backgrounds.js @@ -455,6 +455,11 @@ const backgrounds = { rope_bridge: { }, stone_tower: { }, }, + backgrounds092021: { + autumn_lakeshore: { }, + autumn_poplars: { }, + vineyard: { }, + }, 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 1d2b440e7a..2b1244a4e9 100644 --- a/website/common/script/content/gear/sets/armoire.js +++ b/website/common/script/content/gear/sets/armoire.js @@ -370,6 +370,10 @@ const armor = { con: 6, set: 'bonnieBagpiper', }, + heraldsTunic: { + con: 6, + set: 'herald', + }, }; const body = { @@ -750,6 +754,10 @@ const head = { int: 6, set: 'bonnieBagpiper', }, + heraldsCap: { + int: 6, + set: 'herald', + }, }; const shield = { @@ -1006,6 +1014,10 @@ const shield = { str: 6, set: 'bonnieBagpiper', }, + heraldsMessageScroll: { + per: 6, + set: 'herald', + }, }; const headAccessory = { @@ -1312,6 +1324,10 @@ const weapon = { per: 5, set: 'bath', }, + heraldsBuisine: { + str: 6, + set: 'herald', + }, }; forEach({ diff --git a/website/raw_sprites/spritesmith/backgrounds/background_autumn_lakeshore.png b/website/raw_sprites/spritesmith/backgrounds/background_autumn_lakeshore.png new file mode 100644 index 0000000000..aa9ec530ae Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/background_autumn_lakeshore.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/background_autumn_poplars.png b/website/raw_sprites/spritesmith/backgrounds/background_autumn_poplars.png new file mode 100644 index 0000000000..2c33fd809a Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/background_autumn_poplars.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/background_vineyard.png b/website/raw_sprites/spritesmith/backgrounds/background_vineyard.png new file mode 100644 index 0000000000..abf7f6740d Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/background_vineyard.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_autumn_lakeshore.png b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_autumn_lakeshore.png new file mode 100644 index 0000000000..0656376f0a Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_autumn_lakeshore.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_autumn_poplars.png b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_autumn_poplars.png new file mode 100644 index 0000000000..dab2e228fa Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_autumn_poplars.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_vineyard.png b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_vineyard.png new file mode 100644 index 0000000000..5d5136f41a Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_vineyard.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/broad_armor_armoire_heraldsTunic.png b/website/raw_sprites/spritesmith/gear/armoire/broad_armor_armoire_heraldsTunic.png new file mode 100644 index 0000000000..5033832a2b Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/broad_armor_armoire_heraldsTunic.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/head_armoire_heraldsCap.png b/website/raw_sprites/spritesmith/gear/armoire/head_armoire_heraldsCap.png new file mode 100644 index 0000000000..4283c47ce1 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/head_armoire_heraldsCap.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shield_armoire_heraldsMessageScroll.png b/website/raw_sprites/spritesmith/gear/armoire/shield_armoire_heraldsMessageScroll.png new file mode 100644 index 0000000000..234fad3095 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shield_armoire_heraldsMessageScroll.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_heraldsTunic.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_heraldsTunic.png new file mode 100644 index 0000000000..001fe1f0a8 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_heraldsTunic.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_heraldsCap.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_heraldsCap.png new file mode 100644 index 0000000000..d224a35f50 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_heraldsCap.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_heraldsMessageScroll.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_heraldsMessageScroll.png new file mode 100644 index 0000000000..a0ee96c61d Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_heraldsMessageScroll.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_heraldsBuisine.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_heraldsBuisine.png new file mode 100644 index 0000000000..4ef0b41657 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_heraldsBuisine.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/slim_armor_armoire_heraldsTunic.png b/website/raw_sprites/spritesmith/gear/armoire/slim_armor_armoire_heraldsTunic.png new file mode 100644 index 0000000000..8de9cdfdaf Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/slim_armor_armoire_heraldsTunic.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/weapon_armoire_heraldsBuisine.png b/website/raw_sprites/spritesmith/gear/armoire/weapon_armoire_heraldsBuisine.png new file mode 100644 index 0000000000..e138fcbd0c Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/weapon_armoire_heraldsBuisine.png differ