mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +01:00
17 lines
331 B
JavaScript
17 lines
331 B
JavaScript
const ANIMAL_SET_ACHIEVEMENTS = {
|
|
legendaryBestiary: {
|
|
type: 'pet',
|
|
species: [
|
|
'Dragon',
|
|
'FlyingPig',
|
|
'Gryphon',
|
|
'SeaSerpent',
|
|
'Unicorn',
|
|
],
|
|
achievementKey: 'legendaryBestiary',
|
|
notificationType: 'ACHIEVEMENT_LEGENDARY_BESTIARY',
|
|
},
|
|
};
|
|
|
|
export default ANIMAL_SET_ACHIEVEMENTS;
|