From c748477546678a4c4e1d6134acce7e8cb2ae6744 Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Tue, 10 Nov 2020 14:49:00 -0600 Subject: [PATCH] chore(shops): featured items update --- .../common/script/content/shop-featuredItems.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/website/common/script/content/shop-featuredItems.js b/website/common/script/content/shop-featuredItems.js index de50c282e4..9c07038ab0 100644 --- a/website/common/script/content/shop-featuredItems.js +++ b/website/common/script/content/shop-featuredItems.js @@ -4,7 +4,7 @@ import moment from 'moment'; // path: 'premiumHatchingPotions.Rainbow', const featuredItems = { market () { - if (moment().isBefore('2020-11-02')) { + if (moment().isBefore('2020-12-02')) { return [ { type: 'armoire', @@ -12,15 +12,15 @@ const featuredItems = { }, { type: 'premiumHatchingPotion', - path: 'premiumHatchingPotions.Vampire', + path: 'premiumHatchingPotions.AutumnLeaf', }, { type: 'premiumHatchingPotion', - path: 'premiumHatchingPotions.Ghost', + path: 'premiumHatchingPotions.Frost', }, { - type: 'premiumHatchingPotion', - path: 'premiumHatchingPotions.Shadow', + type: 'food', + path: 'food.Chocolate', }, ]; } @@ -31,15 +31,15 @@ const featuredItems = { }, { type: 'hatchingPotions', - path: 'hatchingPotions.Red', + path: 'hatchingPotions.White', }, { type: 'eggs', - path: 'eggs.Fox', + path: 'eggs.Cactus', }, { type: 'food', - path: 'food.Potatoe', + path: 'food.Honey', }, ]; },