Files
habitica/website/common/script/content/shop-featuredItems.js
SabreCat 00cb50a781 feat(event): Summer Splash 2018
Also gets rid of those Fairy Potions, FOR REAL this time, and fixes a couple of minor Market layout issues
2018-06-19 23:24:40 +00:00

44 lines
787 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.Desert',
},
{
type: 'food',
path: 'food.Fish',
},
{
type: 'card',
path: 'cardTypes.congrats',
},
],
quests: [
{
type: 'quests',
path: 'quests.dilatory_derby',
},
{
type: 'quests',
path: 'quests.dilatoryDistress1',
},
{
type: 'quests',
path: 'quests.whale',
},
],
seasonal: 'summerRogue',
timeTravelers: [
// TODO
],
};
export default featuredItems;