mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-05-24 06:35:37 +00:00
2022-05 backgrounds and enchanted
This commit is contained in:
parent
7548834442
commit
beb51fb00d
4 changed files with 35 additions and 0 deletions
|
|
@ -779,6 +779,15 @@
|
|||
"backgroundSpringtimeLakeText": "Springtime Lake",
|
||||
"backgroundSpringtimeLakeNotes": "Take in the sights along the shores of a Springtime Lake.",
|
||||
|
||||
"backgrounds052022": "SET 96: Released May 2022",
|
||||
"backgroundOnACastleWallText": "On A Castle Wall",
|
||||
"backgroundOnACastleWallNotes": "Look out from on a castle wall.",
|
||||
"backgroundCastleGateText": "Castle Gate",
|
||||
"backgroundCastleGateNotes": "Stand guard at the castle gate.",
|
||||
"backgroundEnchantedMusicRoomText": "Enchanted Music Room",
|
||||
"backgroundEnchantedMusicRoomNotes": "Play in an enchated music room.",
|
||||
|
||||
|
||||
"timeTravelBackgrounds": "Steampunk Backgrounds",
|
||||
"backgroundAirshipText": "Airship",
|
||||
"backgroundAirshipNotes": "Become a sky sailor on board your very own Airship.",
|
||||
|
|
|
|||
|
|
@ -628,6 +628,8 @@
|
|||
"weaponArmoirePinkLongbowNotes": "Be a cupid-in-training, mastering both archery and matters of the heart with this beautiful bow. Increases Perception by <%= per %> and Strength by <%= str %>. Enchanted Armoire: Independent Item.",
|
||||
"weaponArmoireGardenersWateringCanText": "Watering Can",
|
||||
"weaponArmoireGardenersWateringCanNotes": "You can’t get far without water! Have an infinite supply on hand with this magic, refilling watering can. Increases Intelligence by <%= int %>. Enchanted Armoire: Gardener Set (Item 4 of 4).",
|
||||
"weaponArmoireHuntingHornText": "Hunting Horn",
|
||||
"weaponArmoireHuntingHornNotes": "Twooooo! Twoo! Twoo! Gather your party for an adventure or quest by playing this horn. Increases strength by <%= str %> and intelligence by <%= int %>. Enchanted Armoire: Musical Instrument Set 1 (Item 1 of 3)",
|
||||
|
||||
"armor": "armor",
|
||||
"armorCapitalized": "Armor",
|
||||
|
|
@ -2426,6 +2428,10 @@
|
|||
"shieldArmoireSoftVioletPillowNotes": "The clever warrior packs a pillow for any expedition. Protect yourself from procrastination-induced panic... even while you nap. Increases Intelligence by <%= int %>. Enchanted Armoire: Violet Loungewear Set (Item 3 of 3).",
|
||||
"shieldArmoireGardenersSpadeText": "Gardener's Spade",
|
||||
"shieldArmoireGardenersSpadeNotes": "Whether you’re digging in the garden, searching for buried treasure, or creating a secret tunnel, this trusty spade is at your side. Increases Strength by <%= str %>. Enchanted Armoire: Gardener Set (Item 3 of 4).",
|
||||
"shieldArmoireSpanishGuitarText": "Spanish Guitar",
|
||||
"shieldArmoireSpanishGuitarNotes": "Tink! Tink! Thrummm! Gather your party for a concert or celebration by playing this guitar. Increases perception by <%= per %> and intelligence by <%= int %>. Enchanted Armoire: Musical Instrument Set 1 (Item 2 of 3)",
|
||||
"shieldArmoireSnareDrumText": "Snare Drum",
|
||||
"shieldArmoireSnareDrumNotes": "Rat-a-tat-tat! Gather your party for a parade or march into battle by playing this drum. Increases constitution by <%= con %> and intelligence by <%= int %>. Enchanted Armoire: Musical Instrument Set 1 (Item 3 of 3)",
|
||||
|
||||
"back": "Back Accessory",
|
||||
"backBase0Text": "No Back Accessory",
|
||||
|
|
|
|||
|
|
@ -495,6 +495,11 @@ const backgrounds = {
|
|||
flower_shop: { },
|
||||
springtime_lake: { },
|
||||
},
|
||||
backgrounds052022: {
|
||||
on_a_castle_wall: { },
|
||||
enchanted_music_room: { },
|
||||
castle_gate: { },
|
||||
},
|
||||
timeTravelBackgrounds: {
|
||||
airship: {
|
||||
price: 1,
|
||||
|
|
|
|||
|
|
@ -1076,6 +1076,16 @@ const shield = {
|
|||
str: 8,
|
||||
set: 'gardenerSet',
|
||||
},
|
||||
spanishGuitar: {
|
||||
per: 5, // this might need to go back to 6
|
||||
int: 6,
|
||||
set: 'musicalInstrumentOne',
|
||||
},
|
||||
snareDrum: {
|
||||
con: 5,
|
||||
int: 6,
|
||||
set: 'musicalInstrumentOne',
|
||||
},
|
||||
};
|
||||
|
||||
const headAccessory = {
|
||||
|
|
@ -1460,6 +1470,11 @@ const weapon = {
|
|||
int: 8,
|
||||
set: 'gardenerSet',
|
||||
},
|
||||
huntingHorn: {
|
||||
str: 5,
|
||||
int: 6,
|
||||
set: 'musicalInstrumentOne',
|
||||
},
|
||||
};
|
||||
|
||||
forEach({
|
||||
|
|
|
|||
Loading…
Reference in a new issue