feat(event): April Fool pronk

This commit is contained in:
Sabe Jones
2019-03-25 17:26:38 -05:00
parent a2261e3591
commit c2b106564f
39 changed files with 108 additions and 15 deletions

View File

@@ -170,6 +170,14 @@ let premium = {
},
};
const wacky = {
Veggie: {
text: t('hatchingPotionVeggie'),
limited: true,
_season: 'March',
},
};
each(drops, (pot, key) => {
defaults(pot, {
key,
@@ -203,10 +211,29 @@ each(premium, (pot, key) => {
});
});
each(wacky, (pot, key) => {
defaults(pot, {
key,
value: 2,
notes: t('hatchingPotionNotes', {
potText: pot.text,
}),
_addlNotes: t('eventAvailability', {
date: t(`dateEnd${pot._season}`),
}),
premium: false,
limited: true,
canBuy () {
return pot._season === CURRENT_SEASON;
},
});
});
let all = assign({}, drops, premium);
module.exports = {
drops,
premium,
wacky,
all,
};