mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +01:00
feat(gala): Add 2023 Summer Splash Gala Items (#14712)
* feat(content): add June subscriber items * feat(gala): add images * feat(gala): add code * feat(gala): text strings * feat(gala): testing and final updates * feat(gala): fixed a couple of typos * fix(event): proofread strings and dates Also replace empty descriptions for Rogue and Healer * fix(event): NO EGG --------- Co-authored-by: SabreCat <sabe@habitica.com>
This commit is contained in:
@@ -29,23 +29,22 @@ export default {
|
||||
|
||||
pinnedSets: CURRENT_EVENT
|
||||
? {
|
||||
rogue: 'spring2023CaterpillarRogueSet',
|
||||
warrior: 'spring2023HummingbirdWarriorSet',
|
||||
wizard: 'spring2023MoonstoneMageSet',
|
||||
healer: 'spring2023LilyHealerSet',
|
||||
rogue: 'summer2023GuppyRogueSet',
|
||||
warrior: 'summer2023GoldfishWarriorSet',
|
||||
wizard: 'summer2023CoralMageSet',
|
||||
healer: 'summer2023KelpHealerSet',
|
||||
}
|
||||
: {},
|
||||
availableSpells: CURRENT_EVENT && moment().isBetween('2023-04-18T08:00-05:00', CURRENT_EVENT.end)
|
||||
|
||||
availableSpells: CURRENT_EVENT && moment().isBetween('2023-07-11T08:00-04:00', CURRENT_EVENT.end)
|
||||
? [
|
||||
'shinySeed',
|
||||
'seafoam',
|
||||
]
|
||||
: [],
|
||||
|
||||
availableQuests: CURRENT_EVENT && moment().isBetween('2023-03-28T08:00-05:00', CURRENT_EVENT.end)
|
||||
? [
|
||||
'egg',
|
||||
]
|
||||
availableQuests: CURRENT_EVENT && moment().isBetween('2023-07-11T08:00-04:00', CURRENT_EVENT.end)
|
||||
? []
|
||||
: [],
|
||||
|
||||
featuredSet: 'spring2022MagpieRogueSet',
|
||||
featuredSet: 'summer2022MantaRayMageSet',
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user