Files
habitica/website/common/script/content/shop-featuredItems.js
2018-05-15 21:00:49 +00:00

48 lines
879 B
JavaScript

// 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: 'hatchingPotions',
path: 'hatchingPotions.Red',
},
{
type: 'premiumHatchingPotion',
path: 'premiumHatchingPotions.Fairy',
},
{
type: 'card',
path: 'cardTypes.goodluck',
},
],
quests: [
{
type: 'quests',
path: 'quests.squirrel',
},
{
type: 'quests',
path: 'quests.taskwoodsTerror1',
},
{
type: 'quests',
path: 'quests.butterfly',
},
{
type: 'bundles',
path: 'bundles.cuddleBuddies',
},
],
seasonal: '',
timeTravelers: [
// TODO
],
};
export default featuredItems;