mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
45 lines
719 B
JavaScript
45 lines
719 B
JavaScript
const featuredItems = {
|
|
market: [
|
|
{
|
|
type: 'armoire',
|
|
path: 'armoire',
|
|
},
|
|
{
|
|
type: 'hatchingPotions',
|
|
path: 'hatchingPotions.Shimmer',
|
|
},
|
|
{
|
|
type: 'hatchingPotions',
|
|
path: 'hatchingPotions.Rainbow',
|
|
},
|
|
{
|
|
type: 'card',
|
|
path: 'cardTypes.goodluck',
|
|
},
|
|
],
|
|
quests: [
|
|
{
|
|
type: 'quests',
|
|
path: 'quests.pterodactyl',
|
|
},
|
|
{
|
|
type: 'quests',
|
|
path: 'quests.taskwoodsTerror1',
|
|
},
|
|
{
|
|
type: 'quests',
|
|
path: 'quests.egg',
|
|
},
|
|
{
|
|
type: 'bundles',
|
|
path: 'bundles.hugabug',
|
|
},
|
|
],
|
|
seasonal: 'springHealer',
|
|
timeTravelers: [
|
|
// TODO
|
|
],
|
|
};
|
|
|
|
export default featuredItems;
|