From 5931f02692bdf5a3ed2cc1e9d9e2ac04e8233609 Mon Sep 17 00:00:00 2001 From: SabreCat Date: Thu, 10 Aug 2023 12:36:48 -0500 Subject: [PATCH] feat(content): 2023 August Armoire and Backgrounds by @CuriousMagpie --- website/common/locales/en/backgrounds.json | 9 +++++ website/common/locales/en/gear.json | 20 ++++++++++ .../script/content/appearance/backgrounds.js | 5 +++ .../script/content/gear/sets/armoire.js | 40 +++++++++++++++++++ 4 files changed, 74 insertions(+) diff --git a/website/common/locales/en/backgrounds.json b/website/common/locales/en/backgrounds.json index 34331adc45..828863293c 100644 --- a/website/common/locales/en/backgrounds.json +++ b/website/common/locales/en/backgrounds.json @@ -899,6 +899,15 @@ "backgroundBoardwalkIntoSunsetText": "Boardwalk into the Sunset", "backgroundBoardwalkIntoSunsetNotes": "Stroll on a Boardwalk into the Sunset.", + "backgrounds082023": "SET 111: Released August 2023", + "backgroundBonsaiCollectionText": "Bonsai Collection", + "backgroundBonsaiCollectionNotes": "Admire a gorgeous Bonsai Collection.", + "backgroundDreamyIslandText": "Dreamy Island", + "backgroundDreamyIslandNotes": "Enjoy the scenery on a Dreamy Island.", + "backgroundRockGardenText": "Rock Garden", + "backgroundRockGardenNotes": "Relax in a Rock Garden.", + + "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 7cf4f468e7..f742d32c1d 100644 --- a/website/common/locales/en/gear.json +++ b/website/common/locales/en/gear.json @@ -1489,6 +1489,8 @@ "armorArmoireDiagonalRainbowShirtNotes": "A splash of color with a dash of style. Be joyful! Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Rainbow Set (Item 2 of 2).", "armorArmoireAdmiralsUniformText": "Admiral's Uniform", "armorArmoireAdmiralsUniformNotes": "We salute you! This naval uniform signals that you’re ready to take command of your tasks as well as a ship. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Admiral’s Set (Item 2 of 2).", + "armorArmoireKarateGiText": "Karate Gi", + "armorArmoireKarateGiNotes": "This lightweight karate uniform is perfect for practice or competition. Increases Strength by <%= str %>. Enchanted Armoire: Karate Set (Item 1 of 10).", "headgear": "helm", "headgearCapitalized": "Headgear", @@ -2873,6 +2875,24 @@ "bodyArmoireLifeguardWhistleNotes": "Call that misbehaving habit to order! It should know the rules! Increases Intelligence by <%= int %>. Enchanted Armoire: Lifeguard Set (Item 3 of 3).", "bodyArmoireClownsBowtieText": "Clown's Bow-Tie", "bodyArmoireClownsBowtieNotes": "A nice bow-tie is no joking matter, even for a clown. Increases Strength, Intelligence, Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Clown Set (Item 5 of 5).", + "bodyArmoireKarateWhiteBeltText": "White Belt", + "bodyArmoireKarateWhiteBeltNotes": "This lowest level belt is for those who are just beginning their journey. Increases Intelligence by <%= int %>. Enchanted Armoire: Karate Set (Item 2 of 10).", + "bodyArmoireKarateYellowBeltText": "Yellow Belt", + "bodyArmoireKarateYellowBeltNotes": "This belt is for beginners who have learned the basics. Increases Perception by <%= per %>. Enchanted Armoire: Karate Set (Item 3 of 10).", + "bodyArmoireKarateOrangeBeltText": "Orange Belt", + "bodyArmoireKarateOrangeBeltNotes": "This belt is for those who have grown and mastered the beginner level. Increases Constitution by <%= con %>. Enchanted Armoire: Karate Set (Item 4 of 10).", + "bodyArmoireKarateGreenBeltText": "Green Belt", + "bodyArmoireKarateGreenBeltNotes": "This belt is for those at the intermediate level learning to strengthen their skills. Increases Strength by <%= str %>. Enchanted Armoire: Karate Set (Item 5 of 10).", + "bodyArmoireKarateBlueBeltText": "Blue Belt", + "bodyArmoireKarateBlueBeltNotes": "This belt is for those who are learning more and developing their minds and bodies. Increases Constitution by <%= con %>. Enchanted Armoire: Karate Set (Item 6 of 10).", + "bodyArmoireKaratePurpleBeltText": "Purple Belt", + "bodyArmoireKaratePurpleBeltNotes": "This belt is for those ready to embark toward advanced study. Increases Constitution by <%= con %>. Enchanted Armoire: Karate Set (Item 7 of 10).", + "bodyArmoireKarateRedBeltText": "Red Belt", + "bodyArmoireKarateRedBeltNotes": "This belt is for those who have learned to be cautious in their practice. Increases Perception by <%= per %>. Enchanted Armoire: Karate Set (Item 8 of 10).", + "bodyArmoireKarateBrownBeltText": "Brown Belt", + "bodyArmoireKarateBrownBeltNotes": "This belt is for those whose techniques and skills have matured. Increases Strength by <%= str %>. Enchanted Armoire: Karate Set (Item 9 of 10).", + "bodyArmoireKarateBlackBeltText": "Black Belt", + "bodyArmoireKarateBlackBeltNotes": "This highest level belt is for those who seek a deeper understanding and can pass their knowledge on to others. Increases Intelligence by <%= int %>. Enchanted Armoire: Karate Set (Item 10 of 10).", "headAccessory": "Head Accessory", "accessories": "Accessories", diff --git a/website/common/script/content/appearance/backgrounds.js b/website/common/script/content/appearance/backgrounds.js index e924af759a..c42f28cdd7 100644 --- a/website/common/script/content/appearance/backgrounds.js +++ b/website/common/script/content/appearance/backgrounds.js @@ -570,6 +570,11 @@ const backgrounds = { colorful_coral: { }, boardwalk_into_sunset: { }, }, + backgrounds082023: { + bonsai_collection: { }, + dreamy_island: { }, + rock_garden: { }, + }, eventBackgrounds: { birthday_bash: { price: 0, diff --git a/website/common/script/content/gear/sets/armoire.js b/website/common/script/content/gear/sets/armoire.js index 8edeb5bc1c..0d3ae57f2d 100644 --- a/website/common/script/content/gear/sets/armoire.js +++ b/website/common/script/content/gear/sets/armoire.js @@ -439,6 +439,10 @@ const armor = { str: 7, set: 'admiralsSet', }, + karateGi: { + str: 10, + set: 'karateSet', + }, }; const body = { @@ -458,6 +462,42 @@ const body = { per: 2, set: 'clown', }, + karateYellowBelt: { + per: 3, + set: 'karateSet', + }, + karateWhiteBelt: { + con: 3, + set: 'karateSet', + }, + karateRedBelt: { + per: 3, + set: 'karateSet', + }, + karatePurpleBelt: { + con: 3, + set: 'karateSet', + }, + karateOrangeBelt: { + con: 3, + set: 'karateSet', + }, + karateGreenBelt: { + str: 3, + set: 'karateSet', + }, + karateBrownBelt: { + str: 3, + set: 'karateSet', + }, + karateBlueBelt: { + con: 3, + set: 'karateSet', + }, + karateBlackBelt: { + con: 3, + set: 'karateSet', + }, }; const eyewear = {