Skip to content

Commit

Permalink
add 2024-06 enchanted armoire items
Browse files Browse the repository at this point in the history
  • Loading branch information
CuriousMagpie committed May 9, 2024
1 parent 2e1dd1b commit 53e3db6
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
8 changes: 8 additions & 0 deletions website/common/locales/en/gear.json
Original file line number Diff line number Diff line change
Expand Up @@ -757,6 +757,8 @@
"weaponArmoireOptimistsCloverNotes": "Well, would you look at what you found? It never hurts to have just a little extra good luck on your side. Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Optimist Set (Item 4 of 4).",
"weaponArmoirePottersWheelText": "Potter's Wheel",
"weaponArmoirePottersWheelNotes": "Throw some clay on this wheel and make a bowl or a mug or a vase or a slightly different bowl. If you're lucky, a ghost might visit while you create! Increases Perception by <%= per %>. Enchanted Armoire: Potter Set (Item 4 of 4).",
"weaponArmoireShadyBeachUmbrellaText": "Beach Umbrella",
"weaponArmoireShadyBeachUmbrellaNotes": "The shade of this rainbow-colored umbrella conceals you briefly from the day star and any unwanted bothers. Increases Perception by <%= per %>. Enchanted Armoire: Beachside Set (Item 3 of 4).",

"armor": "armor",
"armorCapitalized": "Armor",
Expand Down Expand Up @@ -1590,6 +1592,10 @@
"armorArmoireSmileyShirtNotes": "Because you’re happy! Show the world you’re all smiles today. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Optimist Set (Item 1 of 4).",
"armorArmoirePottersApronText": "Potter's Apron",
"armorArmoirePottersApronNotes": "You came prepared with tools of the trade. Good thing you wore this apron. It has pockets! Increases Strength by <%= str %>. Enchanted Armoire: Potter Set (Item 1 of 4).",
"armorArmoireYellowStripedSwimsuitText": "Yellow Striped Swimsuit",
"armorArmoireYellowStripedSwimsuitNotes": "What could be more delightful than battling sea monsters on the beach? Increases Constitution by <%= con %>. Enchanted Armoire: Beachside Set (Item 1 of 4).",
"armorArmoireBlueStripedSwimsuitText": "Blue Striped Swimsuit",
"armorArmoireBlueStripedSwimsuitNotes": "What could be more exciting than battling sea monsters on the beach? Increases Constitution by <%= con %>. Enchanted Armoire: Beachside Set (Item 2 of 4).",

"headgear": "helm",
"headgearCapitalized": "Headgear",
Expand Down Expand Up @@ -2895,6 +2901,8 @@
"shieldArmoireHappyThoughtsNotes": "Whether you're remembering a joyful moment from your past or imagining the best outcome for the future, always look on the bright side of life. Increases all stats by <%= attrs %> each. Enchanted Armoire: Optimist Set (Item 3 of 4).",
"shieldArmoireThrownVesselText": "Thrown Vessel",
"shieldArmoireThrownVesselNotes": "You know what they say: practice makes progress. And this is the best one you’ve made so far! Increases Constitution by <%= con %>. Enchanted Armoire: Potter Set (Item 3 of 4).",
"shieldArmoireBuoyantBeachBallText": "Beachball",
"shieldArmoireBuoyantBeachBallNotes": "Got too many balls up in the air already? Here’s one that you can safely set down, roll, bounce and bounce and bounce... Increases Strength by <%= str %>. Enchanted Armoire: Beachside Set (Item 4 of 4).",

"back": "Back Accessory",
"backBase0Text": "No Back Accessory",
Expand Down
17 changes: 17 additions & 0 deletions website/common/script/content/gear/sets/armoire.js
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,14 @@ const armor = {
str: 8,
set: 'pottersSet',
},
yellowStripedSwimsuit: {
con: 13,
set: 'beachsideSet',
},
blueStripedSwimsuit: {
con: 13,
set: 'beachsideSet',
},
};

const body = {
Expand Down Expand Up @@ -1331,6 +1339,10 @@ const shield = {
con: 8,
set: 'pottersSet',
},
shadyBeachUmbrella: {
per: 12,
set: 'beachsideSet',
},
};

const headAccessory = {
Expand Down Expand Up @@ -1813,6 +1825,10 @@ const weapon = {
per: 8,
set: 'pottersSet',
},
buoyantBeachBall: {
str: 12,
set: 'beachsideSet',
},
};

const releaseDates = {
Expand All @@ -1824,6 +1840,7 @@ const releaseDates = {
hatterSet: '2024-03-05T08:00-05:00',
optimistSet: '2024-04-04T08:00-04:00',
pottersSet: '2024-05-07T08:00-04:00',
beachsideSet: '2024-06-06T08:00-04:00',
};

forEach({
Expand Down

0 comments on commit 53e3db6

Please sign in to comment.