diff --git a/website/common/locales/en/content.json b/website/common/locales/en/content.json index 21af836eba..d7be693d2f 100644 --- a/website/common/locales/en/content.json +++ b/website/common/locales/en/content.json @@ -311,6 +311,7 @@ "hatchingPotionVirtualPet": "Virtual Pet", "hatchingPotionPorcelain": "Porcelain", "hatchingPotionPinkMarble": "Pink Marble", + "hatchingPotionTeaShop": "Tea Shop", "hatchingPotionNotes": "Pour this on an egg, and it will hatch as a <%= potText(locale) %> pet.", "premiumPotionAddlNotes": "Not usable on quest pet eggs. Available for purchase until <%= date(locale) %>.", diff --git a/website/common/script/content/hatching-potions.js b/website/common/script/content/hatching-potions.js index f30535d985..deaa02de9c 100644 --- a/website/common/script/content/hatching-potions.js +++ b/website/common/script/content/hatching-potions.js @@ -564,13 +564,13 @@ const wacky = { Veggie: { text: t('hatchingPotionVeggie'), limited: true, - event: EVENTS.spring2022, + event: EVENTS.spring2023, _addlNotes: t('eventAvailabilityReturning', { availableDate: t('dateEndApril'), - previousDate: t('aprilYYYY', { year: 2021 }), + previousDate: t('aprilYYYY', { year: 2022 }), }), canBuy () { - return moment().isBetween('2022-04-07T08:00-05:00', EVENTS.spring2022.end); + return moment().isBetween('2023-04-06T08:00-05:00', EVENTS.spring2023.end); }, }, Dessert: { @@ -585,6 +585,17 @@ const wacky = { _addlNotes: t('premiumPotionUnlimitedNotes'), canBuy: hasQuestAchievementFunction('virtualpet'), }, + TeaShop: { + text: t('hatchingPotionTeaShop'), + limited: true, + event: EVENTS.spring2023, + _addlNotes: t('eventAvailabilityReturning', { + availableDate: t('dateEndApril'), + }), + canBuy () { + return moment().isBetween('2023-04-06T08:00-05:00', EVENTS.spring2023.end); + }, + }, }; each(drops, (pot, key) => {