mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-30 06:30:42 +00:00
33 lines
599 B
JavaScript
33 lines
599 B
JavaScript
|
|
import { SEASONAL_SETS} from '../content/constants';
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
// opened: false,
|
||
|
|
opened: true,
|
||
|
|
|
||
|
|
// used for the seasonalShop.notes
|
||
|
|
// currentSeason: 'Closed',
|
||
|
|
currentSeason: 'Fall',
|
||
|
|
|
||
|
|
dateRange: { start: '2017-09-21', end: '2017-10-31' },
|
||
|
|
|
||
|
|
availableSets: [
|
||
|
|
...SEASONAL_SETS.fall,
|
||
|
|
],
|
||
|
|
|
||
|
|
pinnedSets: {
|
||
|
|
warrior: 'fall2017HabitoweenSet',
|
||
|
|
wizard: 'fall2017MasqueradeSet',
|
||
|
|
rogue: 'fall2017TrickOrTreatSet',
|
||
|
|
healer: 'fall2017HauntedHouseSet',
|
||
|
|
},
|
||
|
|
|
||
|
|
availableSpells: [
|
||
|
|
'spookySparkles',
|
||
|
|
],
|
||
|
|
|
||
|
|
availableQuests: [
|
||
|
|
],
|
||
|
|
|
||
|
|
featuredSet: 'battleRogueSet',
|
||
|
|
};
|