fix(content): feature items

This commit is contained in:
Sabe Jones
2020-04-06 13:08:29 -05:00
parent 0c640f07d1
commit 371a1542e7
2 changed files with 19 additions and 10 deletions

View File

@@ -284,12 +284,17 @@ const wacky = {
Veggie: {
text: t('hatchingPotionVeggie'),
limited: true,
_season: '_PENDING_',
_addlNotes: t('eventAvailabilityReturning', {
availableDate: t('dateEndMarch'),
previousDate: t('marchYYYY', { year: 2019 }),
}),
canBuy () {
return moment().isBefore('2020-05-02');
},
},
Dessert: {
text: t('hatchingPotionDessert'),
limited: true,
_season: '_PENDING_',
canBuy: hasQuestAchievementFunction('waffle'),
},
};