mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 19:47:03 +00:00
feat(content): Subscriber Items 2017-04
This commit is contained in:
parent
f3712c0641
commit
984e7f8005
11 changed files with 24 additions and 3 deletions
|
|
@ -2,7 +2,7 @@ var _id = '';
|
|||
var update = {
|
||||
$addToSet: {
|
||||
'purchased.plan.mysteryItems':{
|
||||
$each:['head_mystery_201703','armor_mystery_201703']
|
||||
$each:['back_mystery_201704','armor_mystery_201704']
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 926 B |
Binary file not shown.
|
After Width: | Height: | Size: 557 B |
Binary file not shown.
|
After Width: | Height: | Size: 3.1 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 3.4 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 538 B |
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
|
|
@ -546,6 +546,8 @@
|
|||
"armorMystery201612Notes": "Crack nuts in style in this spectacular holiday ensemble. Be careful not to pinch your fingers! Confers no benefit. December 2016 Subscriber Item.",
|
||||
"armorMystery201703Text": "Shimmer Armor",
|
||||
"armorMystery201703Notes": "Though its colors are reminiscent of spring petals, this armor is stronger than steel! Confers no benefit. March 2017 Subscriber Item.",
|
||||
"armorMystery201704Text": "Fairytale Armor",
|
||||
"armorMystery201704Notes": "Fairy folk crafted this armor from morning dew to capture the colors of the sunrise. Confers no benefit. April 2017 Subscriber Item.",
|
||||
"armorMystery301404Text": "Steampunk Suit",
|
||||
"armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.",
|
||||
"armorMystery301703Text": "Steampunk Peacock Gown",
|
||||
|
|
@ -1141,10 +1143,12 @@
|
|||
"backMystery201510Notes": "Prehensile and powerful! Confers no benefit. October 2015 Subscriber Item.",
|
||||
"backMystery201602Text": "Heartbreaker Cape",
|
||||
"backMystery201602Notes": "With a swish of your cape, your enemies fall before you! Confers no benefit. February 2016 Subscriber Item.",
|
||||
"backMystery201702Text": "Heartstealer Cape",
|
||||
"backMystery201702Notes": "A swoosh of this cape, and all near you will be swept off their feet by your charm! Confers no benefit. February 2017 Subscriber Item.",
|
||||
"backMystery201608Text": "Cape of Thunder",
|
||||
"backMystery201608Notes": "Fly through the stormy skies with this billowing cape! Confers no benefit. August 2016 Subscriber Item.",
|
||||
"backMystery201702Text": "Heartstealer Cape",
|
||||
"backMystery201702Notes": "A swoosh of this cape, and all near you will be swept off their feet by your charm! Confers no benefit. February 2017 Subscriber Item.",
|
||||
"backMystery201704Text": "Fairytale Wings",
|
||||
"backMystery201704Notes": "These shimmering wings will carry you anywhere, even the hidden realms ruled by magical creatures. Confers no benefit. April 2017 Subscriber Item.",
|
||||
|
||||
"backSpecialWonderconRedText": "Mighty Cape",
|
||||
"backSpecialWonderconRedNotes": "Swishes with strength and beauty. Confers no benefit. Special Edition Convention Item.",
|
||||
|
|
|
|||
|
|
@ -126,6 +126,7 @@
|
|||
"mysterySet201701": "Time-Freezer Set",
|
||||
"mysterySet201702": "Heartstealer Set",
|
||||
"mysterySet201703": "Shimmer Set",
|
||||
"mysterySet201704": "Fairytale Set",
|
||||
"mysterySet301404": "Steampunk Standard Set",
|
||||
"mysterySet301405": "Steampunk Accessories Set",
|
||||
"mysterySet301703": "Peacock Steampunk Set",
|
||||
|
|
|
|||
|
|
@ -157,6 +157,12 @@ let armor = {
|
|||
mystery: '201703',
|
||||
value: 0,
|
||||
},
|
||||
201704: {
|
||||
text: t('armorMystery201704Text'),
|
||||
notes: t('armorMystery201704Notes'),
|
||||
mystery: '201704',
|
||||
value: 0,
|
||||
},
|
||||
301404: {
|
||||
text: t('armorMystery301404Text'),
|
||||
notes: t('armorMystery301404Notes'),
|
||||
|
|
@ -232,6 +238,12 @@ let back = {
|
|||
mystery: '201702',
|
||||
value: 0,
|
||||
},
|
||||
201704: {
|
||||
text: t('backMystery201704Text'),
|
||||
notes: t('backMystery201704Notes'),
|
||||
mystery: '201704',
|
||||
value: 0,
|
||||
},
|
||||
};
|
||||
|
||||
let eyewear = {
|
||||
|
|
|
|||
|
|
@ -154,6 +154,10 @@ let mysterySets = {
|
|||
start: '2017-03-23',
|
||||
end: '2017-04-02',
|
||||
},
|
||||
201704: {
|
||||
start: '2017-04-25',
|
||||
end: '2017-05-02',
|
||||
},
|
||||
301404: {
|
||||
start: '3014-03-24',
|
||||
end: '3014-04-02',
|
||||
|
|
|
|||
Loading…
Reference in a new issue