mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 22:27:26 +01:00
* 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
45 lines
706 B
JavaScript
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;
|