habitica/website/common/script/content/shop-featuredItems.js

44 lines
779 B
JavaScript
Raw Normal View History

// 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',
},
{
2019-05-02 19:24:29 +00:00
type: 'eggs',
path: 'eggs.Fox',
},
{
2019-05-02 19:24:29 +00:00
type: 'hatchingPotions',
path: 'hatchingPotions.CottonCandyBlue',
},
{
2019-02-02 19:03:04 +00:00
type: 'card',
2019-05-02 19:24:29 +00:00
path: 'cardTypes.congrats',
},
],
quests: [
{
type: 'quests',
path: 'quests.bronze',
},
{
type: 'quests',
path: 'quests.yarn',
},
{
type: 'quests',
path: 'quests.dolphin',
2018-05-08 18:28:33 +00:00
},
],
2019-06-19 00:20:14 +00:00
seasonal: 'summer2019Mage',
timeTravelers: [
// TODO
],
};
export default featuredItems;