2020-09-23 19:09:38 +00:00
|
|
|
import moment from 'moment';
|
2018-03-31 11:46:51 +00:00
|
|
|
// Magic Hatching Potions are configured like this:
|
|
|
|
|
// type: 'premiumHatchingPotion', // note no "s" at the end
|
|
|
|
|
// path: 'premiumHatchingPotions.Rainbow',
|
2017-07-27 17:41:23 +00:00
|
|
|
const featuredItems = {
|
2019-11-14 21:08:45 +00:00
|
|
|
market () {
|
2021-09-21 21:16:52 +00:00
|
|
|
if (moment().isBefore('2021-10-31T20:00-04:00')) {
|
2020-09-23 19:09:38 +00:00
|
|
|
return [
|
|
|
|
|
{
|
|
|
|
|
type: 'armoire',
|
|
|
|
|
path: 'armoire',
|
|
|
|
|
},
|
|
|
|
|
{
|
2021-09-21 21:16:52 +00:00
|
|
|
type: 'premiumHatchingPotion',
|
|
|
|
|
path: 'premiumHatchingPotions.Glow',
|
2020-09-23 19:09:38 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'premiumHatchingPotion',
|
2021-09-21 21:16:52 +00:00
|
|
|
path: 'premiumHatchingPotions.Spooky',
|
2020-09-23 19:09:38 +00:00
|
|
|
},
|
|
|
|
|
{
|
2020-12-10 22:53:37 +00:00
|
|
|
type: 'premiumHatchingPotion',
|
2021-09-21 21:16:52 +00:00
|
|
|
path: 'premiumHatchingPotions.Vampire',
|
2020-09-23 19:09:38 +00:00
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
}
|
2019-11-14 21:08:45 +00:00
|
|
|
return [
|
|
|
|
|
{
|
|
|
|
|
type: 'armoire',
|
|
|
|
|
path: 'armoire',
|
|
|
|
|
},
|
|
|
|
|
{
|
2020-12-10 22:53:37 +00:00
|
|
|
type: 'food',
|
2021-09-21 21:16:52 +00:00
|
|
|
path: 'food.Chocolate',
|
2019-11-14 21:08:45 +00:00
|
|
|
},
|
|
|
|
|
{
|
2020-12-10 22:53:37 +00:00
|
|
|
type: 'hatchingPotions',
|
2021-09-21 21:16:52 +00:00
|
|
|
path: 'hatchingPotions.Shade',
|
2019-11-14 21:08:45 +00:00
|
|
|
},
|
|
|
|
|
{
|
2020-12-10 22:53:37 +00:00
|
|
|
type: 'eggs',
|
2021-09-21 21:16:52 +00:00
|
|
|
path: 'eggs.BearCub',
|
2019-11-14 21:08:45 +00:00
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
},
|
2019-12-19 22:54:27 +00:00
|
|
|
quests () {
|
|
|
|
|
return [
|
|
|
|
|
{
|
2020-08-03 18:26:53 +00:00
|
|
|
type: 'quests',
|
2021-09-21 21:16:52 +00:00
|
|
|
path: 'quests.slime',
|
2019-12-19 22:54:27 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'quests',
|
2021-09-21 21:16:52 +00:00
|
|
|
path: 'quests.horse',
|
2019-12-19 22:54:27 +00:00
|
|
|
},
|
|
|
|
|
{
|
2021-09-14 02:29:28 +00:00
|
|
|
type: 'bundles',
|
|
|
|
|
path: 'bundles.birdBuddies',
|
2019-12-19 22:54:27 +00:00
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
},
|
2021-06-22 23:49:32 +00:00
|
|
|
seasonal: 'summer2020Healer',
|
2017-08-16 22:34:25 +00:00
|
|
|
timeTravelers: [
|
2018-02-17 17:11:24 +00:00
|
|
|
// TODO
|
2017-08-16 22:34:25 +00:00
|
|
|
],
|
2017-07-27 17:41:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default featuredItems;
|