mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
45 lines
738 B
JavaScript
45 lines
738 B
JavaScript
const featuredItems = {
|
|
market: [
|
|
{
|
|
type: 'armoire',
|
|
path: 'armoire',
|
|
},
|
|
{
|
|
type: 'hatchingPotions',
|
|
path: 'hatchingPotions.CottonCandyPink',
|
|
},
|
|
{
|
|
type: 'hatchingPotions',
|
|
path: 'hatchingPotions.Cupid',
|
|
},
|
|
{
|
|
type: 'card',
|
|
path: 'cardTypes.valentine',
|
|
},
|
|
],
|
|
quests: [
|
|
{
|
|
type: 'quests',
|
|
path: 'quests.pterodactyl',
|
|
},
|
|
{
|
|
type: 'quests',
|
|
path: 'quests.stoikalmCalamity1',
|
|
},
|
|
{
|
|
type: 'quests',
|
|
path: 'quests.badger',
|
|
},
|
|
{
|
|
type: 'quests',
|
|
path: 'quests.dilatoryDistress1',
|
|
},
|
|
],
|
|
seasonal: 'summerMage',
|
|
timeTravelers: [
|
|
// TODO
|
|
],
|
|
};
|
|
|
|
export default featuredItems;
|