mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
* chore: add spritesheet * chore: update spritesheet * chore: add January subscriber set * chore: add January subscriber items * chore: add January background and enchanted armoire gear * chore: fixing dumb typos * chore: fix another typo * chore: and another dumb typo * chore: fix release date for armoire items * fix(grammar): articles --------- Co-authored-by: Kalista Payne <sabrecat@gmail.com>
32 lines
1.1 KiB
JavaScript
32 lines
1.1 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 },
|
|
};
|
|
|
|
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 },
|
|
};
|
|
|
|
export const HATCHING_POTIONS_RELEASE_DATES = {
|
|
Koi: { year: 2024, month: 6, day: 1 },
|
|
Gingerbread: { year: 2024, month: 12, day: 21 },
|
|
};
|