Files
habitica/website/common/script/content/shop-featuredItems.js
Natalie 2aade9aaa6 August 2024 Content Prebuild (#15277)
* add sprites

* 2024-08 content build

* fixing stuff

* update boss rage effects

* update quest rage text and releaseDates.js

* update shop-featuredItems.js

* fricken fracken beach umbrella

* more beach umbrella

* remove egregious typo
2024-07-25 12:55:38 -05:00

95 lines
1.9 KiB
JavaScript

import { getScheduleMatchingGroup } from './constants';
// Magic Hatching Potions are configured like this:
// type: 'premiumHatchingPotion', // note no "s" at the end
// path: 'premiumHatchingPotions.Rainbow',
const potentialFeaturedPetQuests = [
'nudibranch',
'yarn',
'slime',
'cat',
'frog',
'monkey',
'sloth',
'hippo',
'giraffe',
'guineapig',
'chameleon',
'cheetah',
'crab',
'beetle',
'snail',
'kangaroo',
'owl',
'ghost_stag',
'sabretooth',
];
const featuredItems = {
market () {
const featured = [{
type: 'armoire',
path: 'armoire',
}];
const itemKeys = getScheduleMatchingGroup('premiumHatchingPotions').items;
itemKeys.forEach(itemKey => {
if (featured.length < 4) {
featured.push({
type: 'premiumHatchingPotion',
path: `premiumHatchingPotions.${itemKey}`,
});
}
});
return featured;
},
quests () {
const featured = [];
const petQuestKeys = getScheduleMatchingGroup('petQuests').items;
petQuestKeys.forEach(itemKey => {
if (potentialFeaturedPetQuests.includes(itemKey)) {
featured.push({
type: 'quests',
path: `quests.${itemKey}`,
});
}
});
const hatchingPotionQuests = getScheduleMatchingGroup('hatchingPotionQuests').items;
hatchingPotionQuests.forEach(itemKey => {
featured.push({
type: 'quests',
path: `quests.${itemKey}`,
});
});
return featured;
},
seasonal () {
const featured = [];
const itemKeys = getScheduleMatchingGroup('premiumHatchingPotions').items;
itemKeys.forEach(itemKey => {
if (featured.length < 4) {
featured.push({
type: 'premiumHatchingPotion',
path: `premiumHatchingPotions.${itemKey}`,
});
}
});
return featured;
},
timeTravelers: [
// TODO
],
};
export default featuredItems;