mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-27 13:40:00 +00: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;
|