mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 06:37:23 +01:00
44 lines
750 B
JavaScript
44 lines
750 B
JavaScript
// Magic Hatching Potions are configured like this:
|
|
// type: 'premiumHatchingPotion', // note no "s" at the end
|
|
// path: 'premiumHatchingPotions.Rainbow',
|
|
const featuredItems = {
|
|
market: [
|
|
{
|
|
type: 'armoire',
|
|
path: 'armoire',
|
|
},
|
|
{
|
|
type: 'food',
|
|
path: 'food.Saddle',
|
|
},
|
|
{
|
|
type: 'food',
|
|
path: 'food.Fish',
|
|
},
|
|
{
|
|
type: 'card',
|
|
path: 'cardTypes.congrats',
|
|
},
|
|
],
|
|
quests: [
|
|
{
|
|
type: 'quests',
|
|
path: 'quests.seaserpent',
|
|
},
|
|
{
|
|
type: 'quests',
|
|
path: 'quests.dilatoryDistress1',
|
|
},
|
|
{
|
|
type: 'quests',
|
|
path: 'quests.whale',
|
|
},
|
|
],
|
|
seasonal: '',
|
|
timeTravelers: [
|
|
// TODO
|
|
],
|
|
};
|
|
|
|
export default featuredItems;
|