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

44 lines
777 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',
},
{
type: 'eggs',
path: 'eggs.PandaCub',
},
{
type: 'hatchingPotions',
path: 'hatchingPotions.Shade',
},
{
type: 'food',
path: 'food.Potatoe',
},
],
quests: [
{
type: 'quests',
path: 'quests.sloth',
},
{
2019-09-03 21:07:38 +00:00
type: 'quests',
2019-10-01 23:58:40 +00:00
path: 'quests.taskwoodsTerror1',
},
{
type: 'quests',
path: 'quests.silver',
2018-05-08 18:28:33 +00:00
},
],
2019-09-24 23:41:00 +00:00
seasonal: 'fall2018Rogue',
timeTravelers: [
// TODO
],
};
export default featuredItems;