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',
|
|
|
|
|
},
|
|
|
|
|
{
|
2019-09-26 19:47:26 +00:00
|
|
|
type: 'premiumHatchingPotion',
|
|
|
|
|
path: 'premiumHatchingPotions.Glow',
|
2017-08-16 22:34:25 +00:00
|
|
|
},
|
|
|
|
|
{
|
2019-09-26 19:47:26 +00:00
|
|
|
type: 'premiumHatchingPotion',
|
|
|
|
|
path: 'premiumHatchingPotions.Spooky',
|
2017-08-16 22:34:25 +00:00
|
|
|
},
|
2017-08-20 22:32:32 +00:00
|
|
|
{
|
2019-09-26 19:47:26 +00:00
|
|
|
type: 'premiumHatchingPotion',
|
|
|
|
|
path: 'premiumHatchingPotions.Shadow',
|
2017-08-20 22:32:32 +00:00
|
|
|
},
|
2017-08-16 22:34:25 +00:00
|
|
|
],
|
|
|
|
|
quests: [
|
|
|
|
|
{
|
2019-09-10 22:20:06 +00:00
|
|
|
type: 'bundles',
|
|
|
|
|
path: 'bundles.rockingReptiles',
|
2017-08-16 22:34:25 +00:00
|
|
|
},
|
|
|
|
|
{
|
2019-09-03 21:07:38 +00:00
|
|
|
type: 'quests',
|
|
|
|
|
path: 'quests.dilatoryDistress1',
|
2017-08-16 22:34:25 +00:00
|
|
|
},
|
|
|
|
|
{
|
2019-01-02 22:10:57 +00:00
|
|
|
type: 'quests',
|
2019-08-14 00:16:19 +00:00
|
|
|
path: 'quests.silver',
|
2018-05-08 18:28:33 +00:00
|
|
|
},
|
2017-08-16 22:34:25 +00:00
|
|
|
],
|
2019-09-24 23:41:00 +00:00
|
|
|
seasonal: 'fall2018Rogue',
|
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;
|