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

48 lines
873 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 = {
2019-11-14 21:08:45 +00:00
market () {
return [
{
type: 'armoire',
path: 'armoire',
},
{
type: 'hatchingPotions',
path: 'hatchingPotions.Shade',
2019-11-14 21:08:45 +00:00
},
{
type: 'eggs',
path: 'eggs.TigerCub',
2019-11-14 21:08:45 +00:00
},
{
type: 'food',
path: 'food.Saddle',
2019-11-14 21:08:45 +00:00
},
];
},
2019-12-19 22:54:27 +00:00
quests () {
return [
{
type: 'quests',
path: 'quests.squirrel',
2019-12-19 22:54:27 +00:00
},
{
type: 'quests',
path: 'quests.cow',
2019-12-19 22:54:27 +00:00
},
{
type: 'quests',
path: 'quests.turquoise',
2019-12-19 22:54:27 +00:00
},
];
},
seasonal: 'summer2019Warrior',
timeTravelers: [
// TODO
],
};
export default featuredItems;