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',
},
{
2019-02-02 19:03:04 +00:00
type: 'hatchingPotions',
path: 'hatchingPotions.CottonCandyPink',
},
{
2019-02-02 19:03:04 +00:00
type: 'eggs',
path: 'eggs.TigerCub',
},
{
2019-02-02 19:03:04 +00:00
type: 'card',
path: 'cardTypes.birthday',
},
],
quests: [
{
type: 'quests',
2019-02-02 19:03:04 +00:00
path: 'quests.treeling',
},
{
type: 'quests',
2019-02-02 19:03:04 +00:00
path: 'quests.sabretooth',
},
{
type: 'quests',
2019-02-02 19:03:04 +00:00
path: 'quests.rock',
2018-05-08 18:28:33 +00:00
},
],
seasonal: '',
timeTravelers: [
// TODO
],
};
export default featuredItems;