mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
Also gets rid of those Fairy Potions, FOR REAL this time, and fixes a couple of minor Market layout issues
29 lines
516 B
JavaScript
29 lines
516 B
JavaScript
import { SEASONAL_SETS } from '../content/constants';
|
|
|
|
module.exports = {
|
|
opened: true,
|
|
|
|
currentSeason: 'Summer',
|
|
|
|
dateRange: { start: '2018-06-19', end: '2018-07-31' },
|
|
|
|
availableSets: [
|
|
...SEASONAL_SETS.summer,
|
|
],
|
|
|
|
pinnedSets: {
|
|
wizard: 'summer2018LionfishMageSet',
|
|
warrior: 'summer2018BettaFishWarriorSet',
|
|
rogue: 'summer2018FisherRogueSet',
|
|
healer: 'summer2018MerfolkMonarchSet',
|
|
},
|
|
|
|
availableSpells: [
|
|
],
|
|
|
|
availableQuests: [
|
|
],
|
|
|
|
featuredSet: 'strappingSailorSet',
|
|
};
|