Files
habitica/website/common/script/content/shop-featuredItems.js
negue 876552b922 multiplefixes quest (#8964)
* add hourglass to header

* multiple quest fixes - show quest info in popover/modal

* pin backgrounds

* unpin gem-purchable items / change pinType of quest to quests

* check if hatching potion is allowed on egg - wide hatching info

* fix (perf): items - request text()/notes() only once

* change items margin to 23px

* list cards + open modal to choose a target + add space between market items

* buy card from task-list

* fix tests - unpin items on purchasing eggs / hatchingPotions
2017-08-21 00:32:32 +02:00

45 lines
706 B
JavaScript

const featuredItems = {
market: [
{
type: 'armoire',
path: 'armoire',
},
{
type: 'hatchingPotions',
path: 'hatchingPotions.Golden',
},
{
type: 'food',
path: 'food.Saddle',
},
{
type: 'card',
path: 'cardTypes.greeting',
},
],
quests: [
{
type: 'quests',
path: 'quests.gryphon',
},
{
type: 'quests',
path: 'quests.dilatoryDistress1',
},
{
type: 'quests',
path: 'quests.nudibranch',
},
{
type: 'quests',
path: 'quests.taskwoodsTerror1',
},
],
seasonal: 'summerMage',
timeTravelers: [
// TODO
],
};
export default featuredItems;