diff --git a/website/common/locales/en/backgrounds.json b/website/common/locales/en/backgrounds.json index 5ecaf1e71b..2ec47772f8 100644 --- a/website/common/locales/en/backgrounds.json +++ b/website/common/locales/en/backgrounds.json @@ -603,6 +603,14 @@ "backgroundVikingShipText": "Viking Ship", "backgroundVikingShipNotes": "Set sail for adventure aboard a Viking Ship.", + "backgrounds072020": "SET 74: Released July 2020", + "backgroundBeachCabanaText": "Beach Cabana", + "backgroundBeachCabanaNotes": "Relax in the shade of a Beach Cabana.", + "backgroundSwimmingAmongJellyfishText": "Swimming Among Jellyfish", + "backgroundSwimmingAmongJellyfishNotes": "Thrill with beauty and danger Swimming Among Jellyfish.", + "backgroundUnderwaterRuinsText": "Underwater Ruins", + "backgroundUnderwaterRuinsNotes": "Explore Underwater Ruins sunk long ago.", + "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 923e93ce3a..7f33712334 100644 --- a/website/common/locales/en/gear.json +++ b/website/common/locales/en/gear.json @@ -501,6 +501,8 @@ "weaponArmoireFiddlersBowNotes": "You can coax music out of anything with this! ...A violin might work best, though. Increases Strength by <%= str %>. Enchanted Armoire: Fiddler Set (Item 3 of 4).", "weaponArmoireBeachFlagText": "Beach Flag", "weaponArmoireBeachFlagNotes": "Rally the troops around your sandcastle and let everyone know where to come for help! Increases Perception by <%= per %>. Enchanted Armoire: Lifeguard Set (Item 1 of 3).", + "weaponArmoireHandyHookText": "Handy Hook", + "weaponArmoireHandyHookNotes": "Who needs opposable thumbs? This hook is “handy” enough for anyone. Increases Strength by <%= str %>. Enchanted Armoire: Pirate Set (Item 1 of 3).", "armor": "armor", "armorCapitalized": "Armor", @@ -1078,6 +1080,8 @@ "armorArmoireBoxArmorNotes": "Box Armor: It fits, therefore you sits... uh, therefore you wear it into battle, like the bold knight you are! Increases Perception and Constitution by <%= attrs %> each. Enchanted Armoire: Paper Knight Set (Item 3 of 3).", "armorArmoireFiddlersCoatText": "Fiddler's Coat", "armorArmoireFiddlersCoatNotes": "A practical outfit to give you plenty of room to move! Increases Constitution by <%= con %>. Enchanted Armoire: Fiddler Set (Item 2 of 4).", + "armorArmoirePirateOutfitText": "Pirate Outfit", + "armorArmoirePirateOutfitNotes": "Avast, ye landlubbers! The perfect outfit for swabbing the deck and counting your spoils. Increases Constitution and Intelligence by <%= attrs %> each. Enchanted Armoire: Pirate Set (Item 2 of 3).", "headgear": "helm", "headgearCapitalized": "Headgear", diff --git a/website/common/script/content/appearance/backgrounds.js b/website/common/script/content/appearance/backgrounds.js index dad5bb2f61..a0bac69c8c 100644 --- a/website/common/script/content/appearance/backgrounds.js +++ b/website/common/script/content/appearance/backgrounds.js @@ -385,6 +385,11 @@ const backgrounds = { salt_lake: { }, viking_ship: { }, }, + backgrounds072020: { + beach_cabana: { }, + swimming_among_jellyfish: { }, + underwater_ruins: { }, + }, 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 0183c71d21..15754cd556 100644 --- a/website/common/script/content/gear/sets/armoire.js +++ b/website/common/script/content/gear/sets/armoire.js @@ -312,6 +312,11 @@ const armor = { con: 6, set: 'fiddler', }, + pirateOutfit: { + con: 4, + int: 4, + set: 'pirate', + }, }; const body = { @@ -807,6 +812,10 @@ const shield = { con: 12, set: 'lifeguard', }, + piratesCompanion: { + per: 8, + set: 'pirate', + }, }; const headAccessory = { @@ -1077,6 +1086,10 @@ const weapon = { per: 12, set: 'lifeguard', }, + handyHook: { + str: 8, + set: 'pirate', + }, }; forEach({ diff --git a/website/raw_sprites/spritesmith/backgrounds/background_beach_cabana.png b/website/raw_sprites/spritesmith/backgrounds/background_beach_cabana.png new file mode 100644 index 0000000000..7a4d32c6a5 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/background_beach_cabana.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/background_swimming_among_jellyfish.png b/website/raw_sprites/spritesmith/backgrounds/background_swimming_among_jellyfish.png new file mode 100644 index 0000000000..cdd73fa416 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/background_swimming_among_jellyfish.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/background_underwater_ruins.png b/website/raw_sprites/spritesmith/backgrounds/background_underwater_ruins.png new file mode 100644 index 0000000000..5d5dd64e2d Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/background_underwater_ruins.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_beach_cabana.png b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_beach_cabana.png new file mode 100644 index 0000000000..5312d6ada3 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_beach_cabana.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_swimming_among_jellyfish.png b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_swimming_among_jellyfish.png new file mode 100644 index 0000000000..287f905cd6 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_swimming_among_jellyfish.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_underwater_ruins.png b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_underwater_ruins.png new file mode 100644 index 0000000000..664b070744 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_underwater_ruins.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/broad_armor_armoire_pirateOutfit.png b/website/raw_sprites/spritesmith/gear/armoire/broad_armor_armoire_pirateOutfit.png new file mode 100644 index 0000000000..7a9b5fdb50 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/broad_armor_armoire_pirateOutfit.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shield_armoire_piratesCompanion.png b/website/raw_sprites/spritesmith/gear/armoire/shield_armoire_piratesCompanion.png new file mode 100644 index 0000000000..72ecab1725 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shield_armoire_piratesCompanion.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_pirateOutfit.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_pirateOutfit.png new file mode 100644 index 0000000000..776d18e405 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_pirateOutfit.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_piratesCompanion.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_piratesCompanion.png new file mode 100644 index 0000000000..fc48d9d279 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_piratesCompanion.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_handyHook.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_handyHook.png new file mode 100644 index 0000000000..c54c960166 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_handyHook.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/slim_armor_armoire_pirateOutfit.png b/website/raw_sprites/spritesmith/gear/armoire/slim_armor_armoire_pirateOutfit.png new file mode 100644 index 0000000000..c9e046d267 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/slim_armor_armoire_pirateOutfit.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/weapon_armoire_handyHook.png b/website/raw_sprites/spritesmith/gear/armoire/weapon_armoire_handyHook.png new file mode 100644 index 0000000000..520f89e78f Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/weapon_armoire_handyHook.png differ diff --git a/website/raw_sprites/spritesmith_large/promo_armoire_backgrounds_202006.png b/website/raw_sprites/spritesmith_large/promo_armoire_backgrounds_202006.png deleted file mode 100644 index 218cebe3fc..0000000000 Binary files a/website/raw_sprites/spritesmith_large/promo_armoire_backgrounds_202006.png and /dev/null differ diff --git a/website/raw_sprites/spritesmith_large/promo_armoire_backgrounds_202007.png b/website/raw_sprites/spritesmith_large/promo_armoire_backgrounds_202007.png new file mode 100644 index 0000000000..f87cc1a875 Binary files /dev/null and b/website/raw_sprites/spritesmith_large/promo_armoire_backgrounds_202007.png differ diff --git a/website/raw_sprites/spritesmith_large/promo_mystery_202006.png b/website/raw_sprites/spritesmith_large/promo_mystery_202006.png deleted file mode 100644 index 9919ca2148..0000000000 Binary files a/website/raw_sprites/spritesmith_large/promo_mystery_202006.png and /dev/null differ diff --git a/website/raw_sprites/spritesmith_large/promo_mystery_202007.png b/website/raw_sprites/spritesmith_large/promo_mystery_202007.png new file mode 100644 index 0000000000..68f1f6a380 Binary files /dev/null and b/website/raw_sprites/spritesmith_large/promo_mystery_202007.png differ