mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
2022-04 Backgrounds & Enchanted Armoire Items (#13915)
* 2022-04 Backgrounds & Enchanted Armoire Items * remove spritesmith-main.css * adding spritesmith-main.css back in * css fix
This commit is contained in:
parent
18af9f8b40
commit
c3278a3baf
5 changed files with 28 additions and 3 deletions
|
|
@ -1 +1 @@
|
|||
Subproject commit b038e469b6ac4ca028852fe2a8c3b9e4b543611a
|
||||
Subproject commit 1d105ddf5925f8c1ff388d6a7363570b89de6ebc
|
||||
|
|
@ -770,6 +770,14 @@
|
|||
"backgroundFloweringPrairieText": "Flowering Prairie",
|
||||
"backgroundFloweringPrairieNotes": "Frolic through a Flowering Prairie.",
|
||||
|
||||
"backgrounds042022": "SET 95: Released April 2022",
|
||||
"backgroundBlossomingTreesText": "Blossoming Trees",
|
||||
"backgroundBlossomingTreesNotes": "Dally beneath Blossoming Trees.",
|
||||
"backgroundFlowerShopText": "Flower Shop",
|
||||
"backgroundFlowerShopNotes": "Enjoy the sweet scent of a Flower Shop.",
|
||||
"backgroundSpringtimeLakeText": "Springtime Lake",
|
||||
"backgroundSpringtimeLakeNotes": "Take in the sights along the shores of a Springtime Lake.",
|
||||
|
||||
"timeTravelBackgrounds": "Steampunk Backgrounds",
|
||||
"backgroundAirshipText": "Airship",
|
||||
"backgroundAirshipNotes": "Become a sky sailor on board your very own Airship.",
|
||||
|
|
|
|||
|
|
@ -1326,7 +1326,9 @@
|
|||
"armorArmoireSoftVioletSuitText": "Soft Violet Suit",
|
||||
"armorArmoireSoftVioletSuitNotes": "Purple is a luxurious color. Relax in style after you’ve accomplished all your daily tasks. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Violet Loungewear Set (Item 2 of 3).",
|
||||
"armorArmoireGardenersOverallsText": "Gardener's Overalls",
|
||||
"armorArmoireGardenersOverallsNotes": "Don’t be afraid to work down in the dirt when you’re wearing these durable overalls. Increases Constitution by <%= con %>. Enchanted Armoire: Gardener Set (Item 1 of 4).",
|
||||
"armorArmoireGardenersOverallsNotes": "Don’t be afraid to work down in the dirt when you’re wearing these durable overalls. Increases Constitution by <%= con %>. Enchanted Armoire: Gardener Set (Item 1 of 4).",
|
||||
"armorArmoireStrawRaincoatText": "Straw Raincoat",
|
||||
"armorArmoireStrawRaincoatNotes":"This woven straw cape will keep you dry and your armor from rusting while on your quest. Just don’t venture too near a candle! Increases Constitution by <%= con %>. Enchanted Armoire: Straw Raincoat Set (Item 1 of 2).",
|
||||
|
||||
"headgear": "helm",
|
||||
"headgearCapitalized": "Headgear",
|
||||
|
|
@ -2044,7 +2046,9 @@
|
|||
"headArmoireShootingStarCrownText": "Star Crown",
|
||||
"headArmoireShootingStarCrownNotes": "With this brightly shining headpiece, you will literally be the star of your own adventure! Increases Perception by <%= per %>. Enchanted Armoire: Stardust Set (Item 1 of 3).",
|
||||
"headArmoireGardenersSunHatText": "Gardener's Sun Hat",
|
||||
"headArmoireGardenersSunHatNotes": "The bright light of the day star won’t shine in your eyes when you wear this wide-brimmed hat. Increases Perception by <%= per %>. Enchanted Armoire: Gardener Set (Item 2 of 4).",
|
||||
"headArmoireGardenersSunHatNotes": "The bright light of the day star won’t shine in your eyes when you wear this wide-brimmed hat. Increases Perception by <%= per %>. Enchanted Armoire: Gardener Set (Item 2 of 4).",
|
||||
"headArmoireStrawRainHatText": "Straw Rain Hat",
|
||||
"headArmoireStrawRainHatNotes": "You’ll be able to spot every obstacle in your path when you wear this water-resistant, conical hat. Increases Perception by <%= per %>. Enchanted Armoire: Straw Raincoat Set (Item 2 of 2).",
|
||||
|
||||
"offhand": "off-hand item",
|
||||
"offHandCapitalized": "Off-Hand Item",
|
||||
|
|
|
|||
|
|
@ -490,6 +490,11 @@ const backgrounds = {
|
|||
brick_wall_with_ivy: { },
|
||||
flowering_prairie: { },
|
||||
},
|
||||
backgrounds042022: {
|
||||
blossoming_trees: { },
|
||||
flower_shop: { },
|
||||
springtime_lake: { },
|
||||
},
|
||||
timeTravelBackgrounds: {
|
||||
airship: {
|
||||
price: 1,
|
||||
|
|
|
|||
|
|
@ -392,6 +392,10 @@ const armor = {
|
|||
con: 7,
|
||||
set: 'gardenerSet',
|
||||
},
|
||||
strawRaincoat: {
|
||||
con: 9,
|
||||
set: 'strawRaincoat',
|
||||
},
|
||||
};
|
||||
|
||||
const body = {
|
||||
|
|
@ -795,6 +799,10 @@ const head = {
|
|||
per: 7,
|
||||
set: 'gardenerSet',
|
||||
},
|
||||
strawRainHat: {
|
||||
per: 9,
|
||||
set: 'strawRaincoat',
|
||||
},
|
||||
};
|
||||
|
||||
const shield = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue