Skip to content

Commit

Permalink
feat(content): add September 2023 Backgrounds and Enchanted Armoire i…
Browse files Browse the repository at this point in the history
…tems (#14845)

* feat(content): add Sept 2023 backgrounds and enchanted armoire items

* fix(content): fix broken strings in September items

* chore(sprites): update spritesheet

* fix(strings): w.

* fix(strings): capitalization, missing words

---------

Co-authored-by: SabreCat <[email protected]>
Co-authored-by: Sabe Jones <[email protected]>
  • Loading branch information
3 people authored Sep 5, 2023
1 parent ac7c8e0 commit c4f870c
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 0 deletions.
7 changes: 7 additions & 0 deletions website/common/locales/en/backgrounds.json
Original file line number Diff line number Diff line change
Expand Up @@ -907,6 +907,13 @@
"backgroundRockGardenText": "Rock Garden",
"backgroundRockGardenNotes": "Relax in a Rock Garden.",

"backgrounds092023": "SET 112: Released September 2023",
"backgroundMovingDayText": "Moving Day",
"backgroundMovingDayNotes": "Pack up for Moving Day.",
"backgroundCoveredBridgeInAutumnText": "Covered Bridge in Autumn",
"backgroundCoveredBridgeInAutumnNotes": "Traverse a Covered Bridge in Autumn.",
"backgroundBaobabForestText": "Baobab Forest",
"backgroundBaobabForestNotes": "Gaze in wonder at the Baobab Forest.",

"timeTravelBackgrounds": "Steampunk Backgrounds",
"backgroundAirshipText": "Airship",
Expand Down
6 changes: 6 additions & 0 deletions website/common/locales/en/gear.json
Original file line number Diff line number Diff line change
Expand Up @@ -707,6 +707,10 @@
"weaponArmoireFinelyCutGemNotes": "What a find! This stunning, precision-cut gem will be the prize of your collection. And it might contain some special magic, just waiting for you to tap into it. Increases Constitution by <%= con %>. Enchanted Armoire: Jeweler Set (Item 4 of 4).",
"weaponArmoirePaintbrushText": "Paintbrush",
"weaponArmoirePaintbrushNotes": "A jolt of pure inspiration rushes through you when you pick up this brush, allowing you to paint anything you can imagine. Increases Intelligence by <%= int %>. Enchanted Armoire: Painter Set (Item 3 of 4).",
"weaponArmoireMopText": "Mop",
"weaponArmoireMopNotes": "Step 1: Dunk the mop in a bucket of water and suds. Step 2: Drag the mop along the floor. Step 3: Pretend the end of the mop handle is a microphone and sing your heart out. Step 4: Repeat Steps 1-3 until floor is clean. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Cleaning Supplies Set Two (Item 2 of 3)",
"weaponArmoireCleaningClothText": "Cleaning Cloth",
"weaponArmoireCleaningClothNotes": "Take this tidying tool on your adventures and always be able to polish a pretty plaque or wipe a wooden windowsill. Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Cleaning Supplies Set Two (Item 3 of 3)",

"armor": "armor",
"armorCapitalized": "Armor",
Expand Down Expand Up @@ -2707,6 +2711,8 @@
"shieldArmoireBasketballNotes": "Swish! Whenever you shoot this magic basketball, there will be nothing but net. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Old Timey Basketball Set (Item 2 of 2).",
"shieldArmoirePaintersPaletteText": "Painter's Palette",
"shieldArmoirePaintersPaletteNotes": "Paints in all colors of the rainbow are at your disposal. Is it magic that makes them so vivid when you use them, or is it your talent? Increases Strength by <%= str %>. Enchanted Armoire: Painter Set (Item 4 of 4).",
"shieldArmoireBucketText": "Bucket",
"shieldArmoireBucketNotes": "Though this bucket is helpful in holding a mixture of water and cleaning solution, you could also use it to collect, carry, and cart around just about anything that fits inside! Increases Strength and Intelligence by <%= attrs %> each. Enchanted Armoire: Cleaning Supplies Set 2 (Item 1 of 3)",

"back": "Back Accessory",
"backBase0Text": "No Back Accessory",
Expand Down
5 changes: 5 additions & 0 deletions website/common/script/content/appearance/backgrounds.js
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,11 @@ const backgrounds = {
dreamy_island: { },
rock_garden: { },
},
backgrounds092023: {
moving_day: { },
covered_bridge_in_autumn: { },
baobab_forest: { },
},
eventBackgrounds: {
birthday_bash: {
price: 0,
Expand Down
15 changes: 15 additions & 0 deletions website/common/script/content/gear/sets/armoire.js
Original file line number Diff line number Diff line change
Expand Up @@ -1233,6 +1233,11 @@ const shield = {
str: 7,
set: 'painters',
},
bucket: {
str: 4,
int: 4,
set: 'cleaningSuppliesTwo',
},
};

const headAccessory = {
Expand Down Expand Up @@ -1679,6 +1684,16 @@ const weapon = {
int: 8,
set: 'painters',
},
mop: {
con: 4,
per: 4,
set: 'cleaningSuppliesTwo',
},
cleaningCloth: {
str: 4,
con: 4,
set: 'cleaningSuppliesTwo',
},
};

forEach({
Expand Down

0 comments on commit c4f870c

Please sign in to comment.