mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-26 13:22:38 +00:00
12 lines
286 B
JavaScript
12 lines
286 B
JavaScript
|
|
// this achievement covers all pets of a specific type--classic & quest
|
||
|
|
|
||
|
|
const PET_SET_COMPLETE_ACHIEVEMENTS = [
|
||
|
|
{
|
||
|
|
color: 'Skeleton',
|
||
|
|
petAchievement: 'boneToPick',
|
||
|
|
petNotificationType: 'ACHIEVEMENT_PET_SET_COMPLETE',
|
||
|
|
},
|
||
|
|
];
|
||
|
|
|
||
|
|
export default PET_SET_COMPLETE_ACHIEVEMENTS;
|