Files
habitica/website/common/script/content/shop-featuredItems.js
2018-05-01 21:25:45 +00:00

44 lines
790 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: 'hatchingPotions',
path: 'hatchingPotions.Golden',
},
{
type: 'card',
path: 'cardTypes.goodluck',
},
],
quests: [
{
type: 'quests',
path: 'quests.squirrel',
},
{
type: 'quests',
path: 'quests.taskwoodsTerror1',
},
{
type: 'quests',
path: 'quests.bunny',
},
],
seasonal: '',
timeTravelers: [
// TODO
],
};
export default featuredItems;