Files
habitica/website/common/script/content/shop-featuredItems.js
Sabe Jones fcfc44fd13 feat(content): Watery Potions
also fixes some sprite issues
2019-06-20 15:13:19 -05:00

44 lines
814 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: 'eggs',
path: 'eggs.BearCub',
},
{
type: 'premiumHatchingPotion',
path: 'premiumHatchingPotions.Glass',
},
{
type: 'premiumHatchingPotion',
path: 'premiumHatchingPotions.Watery',
},
],
quests: [
{
type: 'quests',
path: 'quests.bronze',
},
{
type: 'quests',
path: 'quests.yarn',
},
{
type: 'quests',
path: 'quests.dolphin',
},
],
seasonal: 'summer2019Mage',
timeTravelers: [
// TODO
],
};
export default featuredItems;