mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-14 18:22:21 +00:00
feat(content): Add April 2023 subscriber items (#14562)
* feat(content): add April Subscriber items * feat(content): add slim armor version to April subscriber items
This commit is contained in:
parent
fc49015ff0
commit
e8501f5cf8
5 changed files with 40 additions and 1 deletions
|
|
@ -1 +1 @@
|
|||
Subproject commit 64576bc4e56d27d61a3b9d6037b60fa1cc56d477
|
||||
Subproject commit 428d395f36c7c6424df55c8d94190ed5f849f1cd
|
||||
|
|
@ -27835,6 +27835,36 @@
|
|||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.broad_armor_mystery_202304 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/broad_armor_mystery_202304.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.head_mystery_202304 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/head_mystery_202304.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.set_mystery_202304 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/set_mystery_202304.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_armor_mystery_202304 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_armor_mystery_202304.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_head_mystery_202304 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_head_mystery_202304.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.slim_armor_mystery_202304 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/slim_armor_mystery_202304.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.broad_armor_mystery_301404 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/broad_armor_mystery_301404.png');
|
||||
width: 90px;
|
||||
|
|
|
|||
|
|
@ -1263,6 +1263,9 @@
|
|||
"armorMystery202210Notes": "Try slithering for a change, you may find it's quite an efficient mode of transportation! Confers no benefit. October 2022 Subscriber Item.",
|
||||
"armorMystery202212Text": "Glacial Dress",
|
||||
"armorMystery202212Notes": "The universe can be cold, but this charming dress will keep you cozy as you fly. Confers no benefit. December 2022 Subscriber Item.",
|
||||
"armorMystery202304Text": "Tiptop Teapot Armor",
|
||||
"armorMystery202304Notes": "Here is your handle and here is your spout! Confers no benefit. April 2023 Subscriber Item.",
|
||||
|
||||
"armorMystery301404Text": "Steampunk Suit",
|
||||
"armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.",
|
||||
"armorMystery301703Text": "Steampunk Peacock Gown",
|
||||
|
|
@ -2047,6 +2050,9 @@
|
|||
"headMystery202301Notes": "Your hearing will be so sharp you'll hear the dawn breaking and the dew sparkling. Confers no benefit. January 2023 Subscriber Item.",
|
||||
"headMystery202303Text": "Mane Character Hair",
|
||||
"headMystery202303Notes": "What better way to let everyone know you’re the star of this tale than to have blue and improbably spiky hair? Confers no benefit. March 2023 Subscriber Item.",
|
||||
"headMystery202304Text": "Tiptop Teapot Lid",
|
||||
"headMystery202304Notes": "Wear this helm for your own safe-tea. Confers no benefit. April 2023 Subscriber Item.",
|
||||
|
||||
"headMystery301404Text": "Fancy Top Hat",
|
||||
"headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.",
|
||||
"headMystery301405Text": "Basic Top Hat",
|
||||
|
|
|
|||
|
|
@ -148,6 +148,7 @@
|
|||
"mysterySet202301": "Valiant Vulpine Set",
|
||||
"mysterySet202302": "Trickster Tabby Set",
|
||||
"mysterySet202303": "Mane Character Set",
|
||||
"mysterySet202304": "Tiptop Teapot Set",
|
||||
"mysterySet301404": "Steampunk Standard Set",
|
||||
"mysterySet301405": "Steampunk Accessories Set",
|
||||
"mysterySet301703": "Peacock Steampunk Set",
|
||||
|
|
|
|||
|
|
@ -60,6 +60,7 @@ const armor = {
|
|||
202207: { },
|
||||
202210: { },
|
||||
202212: { },
|
||||
202304: { },
|
||||
301404: { },
|
||||
301703: { },
|
||||
301704: { },
|
||||
|
|
@ -203,6 +204,7 @@ const head = {
|
|||
202211: { },
|
||||
202301: { },
|
||||
202303: { },
|
||||
202304: { },
|
||||
301404: { },
|
||||
301405: { },
|
||||
301703: { },
|
||||
|
|
|
|||
Loading…
Reference in a new issue