Files
habitica/website/common/script/content/shop-featuredItems.js
Sabe Jones 830c8d3104 chore(event): end Habitoween/Fall Fest
Also announce November challenges
2018-11-01 21:44:00 -05:00

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