Files
habitica/website/common/script/content/shop-featuredItems.js
2019-09-26 14:47:26 -05:00

44 lines
869 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.Glow',
},
{
type: 'premiumHatchingPotion',
path: 'premiumHatchingPotions.Spooky',
},
{
type: 'premiumHatchingPotion',
path: 'premiumHatchingPotions.Shadow',
},
],
quests: [
{
type: 'bundles',
path: 'bundles.rockingReptiles',
},
{
type: 'quests',
path: 'quests.dilatoryDistress1',
},
{
type: 'quests',
path: 'quests.silver',
},
],
seasonal: 'fall2018Rogue',
timeTravelers: [
// TODO
],
};
export default featuredItems;