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 = {
|
2017-08-16 22:34:25 +00:00
|
|
|
market: [
|
|
|
|
|
{
|
|
|
|
|
type: 'armoire',
|
|
|
|
|
path: 'armoire',
|
|
|
|
|
},
|
|
|
|
|
{
|
2018-05-01 21:25:45 +00:00
|
|
|
type: 'hatchingPotions',
|
|
|
|
|
path: 'hatchingPotions.Red',
|
2017-08-16 22:34:25 +00:00
|
|
|
},
|
|
|
|
|
{
|
2018-05-01 21:25:45 +00:00
|
|
|
type: 'hatchingPotions',
|
|
|
|
|
path: 'hatchingPotions.Golden',
|
2017-08-16 22:34:25 +00:00
|
|
|
},
|
2017-08-20 22:32:32 +00:00
|
|
|
{
|
|
|
|
|
type: 'card',
|
2018-03-09 20:45:12 +00:00
|
|
|
path: 'cardTypes.goodluck',
|
2017-08-20 22:32:32 +00:00
|
|
|
},
|
2017-08-16 22:34:25 +00:00
|
|
|
],
|
|
|
|
|
quests: [
|
|
|
|
|
{
|
2017-08-20 22:32:32 +00:00
|
|
|
type: 'quests',
|
2018-04-11 01:32:49 +00:00
|
|
|
path: 'quests.squirrel',
|
2017-08-16 22:34:25 +00:00
|
|
|
},
|
|
|
|
|
{
|
2017-08-20 22:32:32 +00:00
|
|
|
type: 'quests',
|
2018-03-20 21:30:43 +00:00
|
|
|
path: 'quests.taskwoodsTerror1',
|
2017-08-16 22:34:25 +00:00
|
|
|
},
|
|
|
|
|
{
|
2018-04-03 18:42:24 +00:00
|
|
|
type: 'quests',
|
|
|
|
|
path: 'quests.bunny',
|
2017-08-16 22:34:25 +00:00
|
|
|
},
|
|
|
|
|
],
|
2018-05-01 21:25:45 +00:00
|
|
|
seasonal: '',
|
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;
|