Files
habitica/website/common/script/content/shop-featuredItems.js
Sabe Jones c2fe04367f feat(content): Oddballs Bundle
Also includes one more tweak to @mention text highlighting
2018-11-15 15:58:07 -06:00

44 lines
773 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.Shade',
},
{
type: 'eggs',
path: 'eggs.Wolf',
},
{
type: 'card',
path: 'cardTypes.getwell',
},
],
quests: [
{
type: 'quests',
path: 'quests.alligator',
},
{
type: 'quests',
path: 'quests.taskwoodsTerror1',
},
{
type: 'bundles',
path: 'bundles.oddballs',
},
],
seasonal: '',
timeTravelers: [
// TODO
],
};
export default featuredItems;