mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
add armoire items for june
This commit is contained in:
parent
06623991b3
commit
eebfb81bd2
2 changed files with 25 additions and 0 deletions
|
|
@ -766,6 +766,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).",
|
||||
"weaponArmoireBeachUmbrellaText": "Beach Umbrella",
|
||||
"weaponArmoireBeachUmbrellaNotes": "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",
|
||||
|
|
@ -1606,6 +1608,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",
|
||||
|
|
@ -2924,6 +2930,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",
|
||||
|
|
|
|||
|
|
@ -475,6 +475,14 @@ const armor = {
|
|||
str: 8,
|
||||
set: 'pottersSet',
|
||||
},
|
||||
yellowStripedSwimsuit: {
|
||||
con: 13,
|
||||
set: 'beachsideSet',
|
||||
},
|
||||
blueStripedSwimsuit: {
|
||||
con: 13,
|
||||
set: 'beachsideSet',
|
||||
},
|
||||
};
|
||||
|
||||
const body = {
|
||||
|
|
@ -1331,6 +1339,10 @@ const shield = {
|
|||
con: 8,
|
||||
set: 'pottersSet',
|
||||
},
|
||||
buoyantBeachball: {
|
||||
str: 12,
|
||||
set: 'beachsideSet',
|
||||
},
|
||||
};
|
||||
|
||||
const headAccessory = {
|
||||
|
|
@ -1813,6 +1825,10 @@ const weapon = {
|
|||
per: 8,
|
||||
set: 'pottersSet',
|
||||
},
|
||||
beachUmbrella: {
|
||||
str: 12,
|
||||
set: 'beachsideSet',
|
||||
},
|
||||
};
|
||||
|
||||
const releaseDay = 7;
|
||||
|
|
@ -1825,6 +1841,7 @@ const releaseDates = {
|
|||
hatterSet: { year: 2024, month: 3 },
|
||||
optimistSet: { year: 2024, month: 4 },
|
||||
pottersSet: { year: 2024, month: 5 },
|
||||
beachsideSet: { year: 2024, month: 6 },
|
||||
};
|
||||
|
||||
forEach({
|
||||
|
|
|
|||
Loading…
Reference in a new issue