mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 11:36:45 +00:00
commit deecf669d3e0b7d865a5e41ddf12611b0d25c1ac
Author: Kalista Payne <kalista@habitica.com>
Date: Wed Aug 13 17:37:41 2025 -0500
fix(background): *inside* forest witchs cottage
commit 977ebb5b7866d687727402ddaefa470932750491
Author: Kalista Payne <kalista@habitica.com>
Date: Wed Aug 13 17:08:05 2025 -0500
feat(content): October and November releases
commit fe46733a618501e688c590a9c05175f8504d3473
Author: Kalista Payne <kalista@habitica.com>
Date: Tue Aug 12 17:06:59 2025 -0500
fix(content): missing strings and release dates
commit fd4d69be71e38c8e985799369a370c50cb5230af
Author: Kalista Payne <kalista@habitica.com>
Date: Tue Aug 12 16:51:06 2025 -0500
chore(sprites): compile, update subproj
commit c055213790a32449d6bd6082168b34a1ff8e8554
Author: Kalista Payne <kalista@habitica.com>
Date: Tue Aug 12 16:49:14 2025 -0500
feat(content): September 2025 Gala and monthly
50 lines
1.9 KiB
JavaScript
50 lines
1.9 KiB
JavaScript
export const ARMOIRE_RELEASE_DATES = {
|
|
somethingSpooky: { year: 2023, month: 10 },
|
|
cookingImplementsTwo: { year: 2023, month: 11 },
|
|
greenTrapper: { year: 2023, month: 12 },
|
|
schoolUniform: { year: 2024, month: 1 },
|
|
whiteLoungeWear: { year: 2024, month: 2 },
|
|
hatterSet: { year: 2024, month: 3 },
|
|
optimistSet: { year: 2024, month: 4 },
|
|
pottersSet: { year: 2024, month: 5 },
|
|
beachsideSet: { year: 2024, month: 6 },
|
|
corsairSet: { year: 2024, month: 7 },
|
|
dragonKnightSet: { year: 2024, month: 8 },
|
|
funnyFoolSet: { year: 2024, month: 9 },
|
|
frightNightSet: { year: 2024, month: 10 },
|
|
stormKnightSet: { year: 2024, month: 11 },
|
|
festiveHelperSet: { year: 2024, month: 12 },
|
|
snowyTrapperSet: { year: 2025, month: 1 },
|
|
fancyFloralSet: { year: 2025, month: 2 },
|
|
springPetalSet: { year: 2025, month: 3 },
|
|
sillyTuxedoSet: { year: 2025, month: 4 },
|
|
sillierTuxedoSet: { year: 2025, month: 4 },
|
|
gildedKnightSet: { year: 2025, month: 5 },
|
|
beekeepersSet: { year: 2025, month: 6 },
|
|
flyFishingSet: { year: 2025, month: 7 },
|
|
redWaistcoatSet: { year: 2025, month: 8 },
|
|
orangeLoungewear: { year: 2025, month: 9 },
|
|
blackHairbow: { year: 2025, month: 10 },
|
|
blacksmith: { year: 2025, month: 11 },
|
|
};
|
|
|
|
export const EGGS_RELEASE_DATES = {
|
|
Giraffe: { year: 2024, month: 6, day: 1 },
|
|
Chameleon: { year: 2024, month: 7, day: 14 },
|
|
Crab: { year: 2024, month: 8, day: 14 },
|
|
Raccoon: { year: 2024, month: 9, day: 14 },
|
|
Dog: { year: 2024, month: 10, day: 14 },
|
|
Cat: { year: 2025, month: 2, day: 14 },
|
|
Otter: { year: 2025, month: 3, day: 14 },
|
|
Alpaca: { year: 2025, month: 4, day: 14 },
|
|
Platypus: { year: 2025, month: 5, day: 14 },
|
|
};
|
|
|
|
export const HATCHING_POTIONS_RELEASE_DATES = {
|
|
Koi: { year: 2024, month: 6, day: 1 },
|
|
Gingerbread: { year: 2024, month: 12, day: 21 },
|
|
Jade: { year: 2025, month: 3, day: 14 },
|
|
Cryptid: { year: 2025, month: 4, day: 3 },
|
|
Balloon: { year: 2025, month: 4, day: 21 },
|
|
Opal: { year: 2025, month: 5, day: 14 },
|
|
};
|