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

44 lines
806 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-15 21:00:49 +00:00
type: 'premiumHatchingPotion',
path: 'premiumHatchingPotions.Fairy',
},
{
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',
2018-05-08 18:28:33 +00:00
path: 'quests.butterfly',
},
],
2018-05-01 21:25:45 +00:00
seasonal: '',
timeTravelers: [
// TODO
],
};
export default featuredItems;