habitica/website/common/script/content/shop-featuredItems.js

44 lines
775 B
JavaScript
Raw Normal View History

// Magic Hatching Potions are configured like this:
// type: 'premiumHatchingPotion', // note no "s" at the end
// path: 'premiumHatchingPotions.Rainbow',
const featuredItems = {
market: [
{
type: 'armoire',
path: 'armoire',
},
{
type: 'hatchingPotions',
path: 'hatchingPotions.Golden',
},
{
type: 'eggs',
path: 'eggs.PandaCub',
},
{
2019-02-02 19:03:04 +00:00
type: 'card',
2019-02-25 22:58:56 +00:00
path: 'cardTypes.goodluck',
},
],
quests: [
{
type: 'quests',
2019-02-02 19:03:04 +00:00
path: 'quests.treeling',
},
{
type: 'quests',
2019-03-20 00:52:59 +00:00
path: 'quests.egg',
},
{
type: 'quests',
2019-02-02 19:03:04 +00:00
path: 'quests.rock',
2018-05-08 18:28:33 +00:00
},
],
2019-03-20 00:52:59 +00:00
seasonal: 'spring2018Healer',
timeTravelers: [
// TODO
],
};
export default featuredItems;