mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-15 21:57:22 +01:00
44 lines
825 B
JavaScript
44 lines
825 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: 'premiumHatchingPotion',
|
|
path: 'premiumHatchingPotions.Celestial',
|
|
},
|
|
{
|
|
type: 'premiumHatchingPotion',
|
|
path: 'premiumHatchingPotions.Rainbow',
|
|
},
|
|
{
|
|
type: 'card',
|
|
path: 'cardTypes.goodluck',
|
|
},
|
|
],
|
|
quests: [
|
|
{
|
|
type: 'quests',
|
|
path: 'quests.treeling',
|
|
},
|
|
{
|
|
type: 'quests',
|
|
path: 'quests.egg',
|
|
},
|
|
{
|
|
type: 'quests',
|
|
path: 'quests.rock',
|
|
},
|
|
],
|
|
seasonal: 'spring2018Healer',
|
|
timeTravelers: [
|
|
// TODO
|
|
],
|
|
};
|
|
|
|
export default featuredItems;
|