Files
habitica/website/common/script/content/shop-featuredItems.js
SabreCat 2b8415fad0 chore(news): Bailey announcements
Also removes Cuddle Buddies Bundle from featured items
2018-06-01 18:55:43 +00:00

44 lines
806 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',
},
],
seasonal: '',
timeTravelers: [
// TODO
],
};
export default featuredItems;