feat(content): 2023 August Armoire and Backgrounds by @CuriousMagpie

This commit is contained in:
SabreCat
2023-08-10 12:36:48 -05:00
parent e21aa074e4
commit 5931f02692
4 changed files with 74 additions and 0 deletions

View File

@@ -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.",

View File

@@ -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 youre ready to take command of your tasks as well as a ship. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Admirals 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",

View File

@@ -570,6 +570,11 @@ const backgrounds = {
colorful_coral: { },
boardwalk_into_sunset: { },
},
backgrounds082023: {
bonsai_collection: { },
dreamy_island: { },
rock_garden: { },
},
eventBackgrounds: {
birthday_bash: {
price: 0,

View File

@@ -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 = {