mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-14 21:27:23 +01:00
48 lines
905 B
JavaScript
48 lines
905 B
JavaScript
// Magic Hatching Potions are configured like this:
|
|
// type: 'premiumHatchingPotion', // note no "s" at the end
|
|
// path: 'premiumHatchingPotions.Rainbow',
|
|
const featuredItems = {
|
|
market () {
|
|
return [
|
|
{
|
|
type: 'armoire',
|
|
path: 'armoire',
|
|
},
|
|
{
|
|
type: 'premiumHatchingPotion',
|
|
path: 'premiumHatchingPotions.SandSculpture',
|
|
},
|
|
{
|
|
type: 'eggs',
|
|
path: 'eggs.Dragon',
|
|
},
|
|
{
|
|
type: 'food',
|
|
path: 'food.Chocolate',
|
|
},
|
|
];
|
|
},
|
|
quests () {
|
|
return [
|
|
{
|
|
type: 'bundles',
|
|
path: 'bundles.aquaticAmigos',
|
|
},
|
|
{
|
|
type: 'quests',
|
|
path: 'quests.peacock',
|
|
},
|
|
{
|
|
type: 'quests',
|
|
path: 'quests.fluorite',
|
|
},
|
|
];
|
|
},
|
|
seasonal: 'summer2019Warrior',
|
|
timeTravelers: [
|
|
// TODO
|
|
],
|
|
};
|
|
|
|
export default featuredItems;
|