diff --git a/website/common/locales/en/limited.json b/website/common/locales/en/limited.json index ad2ee2fb35..cc0384bdf2 100644 --- a/website/common/locales/en/limited.json +++ b/website/common/locales/en/limited.json @@ -130,7 +130,6 @@ "fall2018CandymancerMageSet": "Candymancer (Mage)", "fall2018CarnivorousPlantSet": "Carnivorous Plant (Healer)", "fall2018AlterEgoSet": "Alter Ego (Rogue)", - "june2018": "June 2018", "winter2019BlizzardSet": "Blizzard (Warrior)", "winter2019PyrotechnicSet": "Pyrotechnic (Mage)", "winter2019WinterStarSet": "Winter Star (Healer)", @@ -169,6 +168,7 @@ "decemberYYYY": "December <%= year %>", "marchYYYY": "March <%= year %>", "mayYYYY": "May <%= year %>", + "juneYYYY": "June <%= year %>", "dateEndJuly": "July 31", "dateEndAugust": "August 31", "dateEndSeptember": "September 21", diff --git a/website/common/script/content/hatching-potions.js b/website/common/script/content/hatching-potions.js index e5ecf3c837..85308a8d54 100644 --- a/website/common/script/content/hatching-potions.js +++ b/website/common/script/content/hatching-potions.js @@ -103,6 +103,14 @@ const premium = { value: 2, text: t('hatchingPotionAquatic'), limited: true, + event: EVENTS.summer2020, + _addlNotes: t('eventAvailabilityReturning', { + availableDate: t('dateEndJuly'), + previousDate: t('juneYYYY', { year: 2017 }), + }), + canBuy () { + return moment().isBefore('2020-08-02'); + }, }, Ember: { value: 2, @@ -248,6 +256,14 @@ const premium = { value: 2, text: t('hatchingPotionWatery'), limited: true, + event: EVENTS.summer2020, + _addlNotes: t('eventAvailabilityReturning', { + availableDate: t('dateEndJuly'), + previousDate: t('juneYYYY', { year: 2019 }), + }), + canBuy () { + return moment().isBefore('2020-08-02'); + }, }, Silver: { value: 2,