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

44 lines
790 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-05-01 21:25:45 +00:00
type: 'hatchingPotions',
path: 'hatchingPotions.Red',
},
{
2018-05-01 21:25:45 +00:00
type: 'hatchingPotions',
path: 'hatchingPotions.Golden',
},
{
type: 'card',
path: 'cardTypes.goodluck',
},
],
quests: [
{
type: 'quests',
2018-04-11 01:32:49 +00:00
path: 'quests.squirrel',
},
{
type: 'quests',
2018-03-20 21:30:43 +00:00
path: 'quests.taskwoodsTerror1',
},
{
type: 'quests',
path: 'quests.bunny',
},
],
2018-05-01 21:25:45 +00:00
seasonal: '',
timeTravelers: [
// TODO
],
};
export default featuredItems;