Cows and Ghosts (but no cow ghosts) (#8052)
* feat(content): Mystery Items and Ghost Potions * fix(news): better cow position * fix(test): update for season
This commit is contained in:
@@ -133,6 +133,12 @@ let armor = {
|
||||
mystery: '201607',
|
||||
value: 0,
|
||||
},
|
||||
201609: {
|
||||
text: t('armorMystery201609Text'),
|
||||
notes: t('armorMystery201609Notes'),
|
||||
mystery: '201609',
|
||||
value: 0,
|
||||
},
|
||||
301404: {
|
||||
text: t('armorMystery301404Text'),
|
||||
notes: t('armorMystery301404Notes'),
|
||||
@@ -352,6 +358,12 @@ let head = {
|
||||
mystery: '201608',
|
||||
value: 0,
|
||||
},
|
||||
201609: {
|
||||
text: t('headMystery201609Text'),
|
||||
notes: t('headMystery201609Notes'),
|
||||
mystery: '201609',
|
||||
value: 0,
|
||||
},
|
||||
301404: {
|
||||
text: t('headMystery301404Text'),
|
||||
notes: t('headMystery301404Notes'),
|
||||
|
||||
@@ -54,6 +54,9 @@ let premium = {
|
||||
text: t('hatchingPotionSpooky'),
|
||||
limited: true,
|
||||
_season: 'fall',
|
||||
canBuy () {
|
||||
return true;
|
||||
},
|
||||
},
|
||||
Peppermint: {
|
||||
value: 2,
|
||||
@@ -73,6 +76,15 @@ let premium = {
|
||||
limited: true,
|
||||
_season: 'summer',
|
||||
},
|
||||
Ghost: {
|
||||
value: 2,
|
||||
text: t('hatchingPotionGhost'),
|
||||
limited: true,
|
||||
_season: 'fall',
|
||||
canBuy () {
|
||||
return true;
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
each(drops, (pot, key) => {
|
||||
|
||||
@@ -126,6 +126,10 @@ let mysterySets = {
|
||||
start: '2016-08-23',
|
||||
end: '2016-09-02',
|
||||
},
|
||||
201609: {
|
||||
start: '2016-09-22',
|
||||
end: '2016-10-02',
|
||||
},
|
||||
301404: {
|
||||
start: '3014-03-24',
|
||||
end: '3014-04-02',
|
||||
|
||||
Reference in New Issue
Block a user