Files
habitica/website/common/script/content/shop-featuredItems.js
2019-04-02 13:08:40 -05:00

44 lines
825 B
JavaScript

// 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: 'premiumHatchingPotion',
path: 'premiumHatchingPotions.Celestial',
},
{
type: 'premiumHatchingPotion',
path: 'premiumHatchingPotions.Rainbow',
},
{
type: 'card',
path: 'cardTypes.goodluck',
},
],
quests: [
{
type: 'quests',
path: 'quests.treeling',
},
{
type: 'quests',
path: 'quests.egg',
},
{
type: 'quests',
path: 'quests.rock',
},
],
seasonal: 'spring2018Healer',
timeTravelers: [
// TODO
],
};
export default featuredItems;