mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 15:17:25 +01:00
32 lines
558 B
JavaScript
32 lines
558 B
JavaScript
import { SEASONAL_SETS } from '../content/constants';
|
|
|
|
module.exports = {
|
|
opened: true,
|
|
|
|
currentSeason: 'Winter',
|
|
|
|
dateRange: { start: '2018-12-20', end: '2019-01-31' },
|
|
|
|
availableSets: [
|
|
...SEASONAL_SETS.winter,
|
|
],
|
|
|
|
pinnedSets: {
|
|
wizard: 'winter2019PyrotechnicSet',
|
|
warrior: 'winter2019BlizzardSet',
|
|
rogue: 'winter2019PoinsettiaSet',
|
|
healer: 'winter2019WinterStarSet',
|
|
},
|
|
|
|
availableSpells: [
|
|
'snowball',
|
|
],
|
|
|
|
availableQuests: [
|
|
'evilsanta',
|
|
'evilsanta2',
|
|
],
|
|
|
|
featuredSet: 'winter2017WinterWolfSet',
|
|
};
|