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

44 lines
826 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',
},
{
2018-08-21 18:29:52 +00:00
type: 'premiumHatchingPotion',
path: 'premiumHatchingPotions.Ghost',
},
{
type: 'premiumHatchingPotion',
path: 'premiumHatchingPotions.Glow',
},
{
type: 'card',
path: 'cardTypes.getwell',
},
],
quests: [
{
type: 'bundles',
path: 'bundles.forestFriends',
},
{
type: 'quests',
path: 'quests.dilatoryDistress1',
},
{
type: 'quests',
2018-08-21 18:29:52 +00:00
path: 'quests.kangaroo',
2018-05-08 18:28:33 +00:00
},
],
seasonal: '',
timeTravelers: [
// TODO
],
};
export default featuredItems;