mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 07:37:25 +01:00
commit f461c07ca7997362512a366eebc7d3a8fba854ee Author: Sabe Jones <sabrecat@gmail.com> Date: Thu Jun 11 16:37:14 2020 -0500 fix(sprites): wolf alignment commit 6ceb4ba6d1ea62892e9b335307043d78971328d0 Author: Sabe Jones <sabrecat@gmail.com> Date: Thu Jun 11 14:53:07 2020 -0500 chore(sprites): compile commit 8b517309f531c7f151c5c18a5ca9847ab7aa5dbb Author: Sabe Jones <sabrecat@gmail.com> Date: Thu Jun 11 14:52:49 2020 -0500 feat(content): Fluorite Magic Hatching Potion and quest
48 lines
867 B
JavaScript
48 lines
867 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: 'hatchingPotions',
|
|
path: 'hatchingPotions.Golden',
|
|
},
|
|
{
|
|
type: 'eggs',
|
|
path: 'eggs.Wolf',
|
|
},
|
|
{
|
|
type: 'food',
|
|
path: 'food.Saddle',
|
|
},
|
|
];
|
|
},
|
|
quests () {
|
|
return [
|
|
{
|
|
type: 'quests',
|
|
path: 'quests.rock',
|
|
},
|
|
{
|
|
type: 'quests',
|
|
path: 'quests.peacock',
|
|
},
|
|
{
|
|
type: 'quests',
|
|
path: 'quests.fluorite',
|
|
},
|
|
];
|
|
},
|
|
seasonal: 'spring2019Rogue',
|
|
timeTravelers: [
|
|
// TODO
|
|
],
|
|
};
|
|
|
|
export default featuredItems;
|