mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +01:00
feat(cont): 2023 Spring Fling content (#14525)
* feat(cont): 2023 Spring Fling * feat(content): 2023 Spring Fling (attempt to add Jungle Buddies Quest Bundle) * fix(event): various typos and date ranges * fix(event): correct countdown on Shiny Seed * fix(quests): correct TypeError in featured list * feat(content): update Spring gear to canon desc --------- Co-authored-by: SabreCat <sabe@habitica.com>
This commit is contained in:
@@ -29,24 +29,23 @@ export default {
|
||||
|
||||
pinnedSets: CURRENT_EVENT
|
||||
? {
|
||||
rogue: 'winter2023RibbonRogueSet',
|
||||
warrior: 'winter2023WalrusWarriorSet',
|
||||
wizard: 'winter2023FairyLightsMageSet',
|
||||
healer: 'winter2023CardinalHealerSet',
|
||||
rogue: 'spring2023CaterpillarRogueSet',
|
||||
warrior: 'spring2023HummingbirdWarriorSet',
|
||||
wizard: 'spring2023MoonstoneMageSet',
|
||||
healer: 'spring2023LilyHealerSet',
|
||||
}
|
||||
: {},
|
||||
availableSpells: CURRENT_EVENT && moment().isBetween('2022-12-27T08:00-05:00', CURRENT_EVENT.end)
|
||||
availableSpells: CURRENT_EVENT && moment().isBetween('2023-04-18T08:00-05:00', CURRENT_EVENT.end)
|
||||
? [
|
||||
'snowball',
|
||||
'shinySeed',
|
||||
]
|
||||
: [],
|
||||
|
||||
availableQuests: CURRENT_EVENT && CURRENT_EVENT.season === 'winter'
|
||||
availableQuests: CURRENT_EVENT && moment().isBetween('2023-03-28T08:00-05:00', CURRENT_EVENT.end)
|
||||
? [
|
||||
'evilsanta',
|
||||
'evilsanta2',
|
||||
'egg',
|
||||
]
|
||||
: [],
|
||||
|
||||
featuredSet: 'winter2022PomegranateMageSet',
|
||||
featuredSet: 'spring2022MagpieRogueSet',
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user