diff --git a/website/common/locales/en/questsContent.json b/website/common/locales/en/questsContent.json index 92437a7f12..99143ddf3c 100644 --- a/website/common/locales/en/questsContent.json +++ b/website/common/locales/en/questsContent.json @@ -596,7 +596,7 @@ "questHippoUnlockText": "Unlocks Hippo Eggs for purchase in the Market", "farmFriendsText": "Farm Friends Quest Bundle", - "farmFriendsNotes": "Contains 'The Mootant Cow', 'Ride the Night-Mare', and 'The Thunder Ram'. Available until August 31.", + "farmFriendsNotes": "Contains 'The Mootant Cow', 'Ride the Night-Mare', and 'The Thunder Ram'. Available until September 30.", "witchyFamiliarsText": "Witchy Familiars Quest Bundle", "witchyFamiliarsNotes": "Contains 'The Rat King', 'The Icy Arachnid', and 'Swamp of the Clutter Frog'. Available until October 31.", diff --git a/website/common/script/content/bundles.js b/website/common/script/content/bundles.js index 42357c24d6..6f9e97ac26 100644 --- a/website/common/script/content/bundles.js +++ b/website/common/script/content/bundles.js @@ -52,8 +52,9 @@ const bundles = { 'horse', 'sheep', ], + event: EVENTS.bundle202209, canBuy () { - return moment().isBetween('2019-08-08', '2019-09-02'); + return moment().isBetween(EVENTS.bundle202209.start, EVENTS.bundle202209.end); }, type: 'quests', value: 7, diff --git a/website/common/script/content/constants/events.js b/website/common/script/content/constants/events.js index b1dfaeff63..49cb72cac6 100644 --- a/website/common/script/content/constants/events.js +++ b/website/common/script/content/constants/events.js @@ -15,6 +15,12 @@ export const EVENTS = { season: 'normal', npcImageSuffix: '', }, + bundle202209: { + start: '2022-09-13T08:00-04:00', + end: '2022-09-30T20:00-04:00', + season: 'normal', + npcImageSuffix: '', + }, potions202208: { start: '2022-08-16T08:00-04:00', end: '2022-08-31T20:00-04:00', diff --git a/website/common/script/content/shop-featuredItems.js b/website/common/script/content/shop-featuredItems.js index b6e4e0705d..f79f352b6e 100644 --- a/website/common/script/content/shop-featuredItems.js +++ b/website/common/script/content/shop-featuredItems.js @@ -32,11 +32,11 @@ const featuredItems = { }, { type: 'food', - path: 'food.RottenMeat', + path: 'food.Potatoe', }, { type: 'hatchingPotions', - path: 'hatchingPotions.Zombie', + path: 'hatchingPotions.Desert', }, { type: 'eggs', @@ -45,26 +45,26 @@ const featuredItems = { ]; }, quests () { - if (moment().isBetween(EVENTS.bundle202208.start, EVENTS.bundle202208.end)) { + if (moment().isBetween(EVENTS.bundle202208.start, EVENTS.bundle202209.end)) { return [ { type: 'bundles', path: 'bundles.forestFriends', }, { - type: 'quests', - path: 'quests.owl', + type: 'bundles', + path: 'bundles.farmFriends', }, { type: 'quests', - path: 'quests.snail', + path: 'quests.ferret', }, ]; } return [ { type: 'quests', - path: 'quests.badger', + path: 'quests.guineapig', }, { type: 'quests',