2021-02-16 23:00:39 +00:00
|
|
|
const ANIMAL_SET_ACHIEVEMENTS = {
|
|
|
|
|
legendaryBestiary: {
|
|
|
|
|
type: 'pet',
|
|
|
|
|
species: [
|
|
|
|
|
'Dragon',
|
|
|
|
|
'FlyingPig',
|
|
|
|
|
'Gryphon',
|
|
|
|
|
'SeaSerpent',
|
|
|
|
|
'Unicorn',
|
|
|
|
|
],
|
|
|
|
|
achievementKey: 'legendaryBestiary',
|
2022-05-12 20:25:40 +00:00
|
|
|
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
|
2021-02-16 23:00:39 +00:00
|
|
|
},
|
2022-03-08 17:43:38 +00:00
|
|
|
birdsOfAFeather: {
|
|
|
|
|
type: 'pet',
|
|
|
|
|
species: [
|
|
|
|
|
'FlyingPig',
|
|
|
|
|
'Owl',
|
|
|
|
|
'Parrot',
|
|
|
|
|
'Pterodactyl',
|
|
|
|
|
'Gryphon',
|
|
|
|
|
'Falcon',
|
2022-03-08 21:52:43 +00:00
|
|
|
'Rooster',
|
|
|
|
|
'Peacock',
|
2022-03-08 17:43:38 +00:00
|
|
|
],
|
|
|
|
|
achievementKey: 'birdsOfAFeather',
|
2022-05-12 20:25:40 +00:00
|
|
|
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
|
2022-03-08 17:43:38 +00:00
|
|
|
},
|
2021-08-24 20:42:40 +00:00
|
|
|
domesticated: {
|
|
|
|
|
type: 'pet',
|
|
|
|
|
species: [
|
|
|
|
|
'Ferret',
|
|
|
|
|
'GuineaPig',
|
|
|
|
|
'Rooster',
|
|
|
|
|
'FlyingPig',
|
|
|
|
|
'Rat',
|
2021-08-26 23:34:17 +00:00
|
|
|
'Bunny',
|
2021-08-24 20:42:40 +00:00
|
|
|
'Horse',
|
|
|
|
|
'Cow',
|
|
|
|
|
],
|
|
|
|
|
achievementKey: 'domesticated',
|
2022-05-12 20:25:40 +00:00
|
|
|
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
|
2021-08-24 20:42:40 +00:00
|
|
|
},
|
2022-01-28 22:14:50 +00:00
|
|
|
zodiacZookeeper: {
|
|
|
|
|
type: 'pet',
|
|
|
|
|
species: [
|
|
|
|
|
'Rat',
|
|
|
|
|
'Cow',
|
|
|
|
|
'Bunny',
|
|
|
|
|
'Snake',
|
|
|
|
|
'Horse',
|
|
|
|
|
'Sheep',
|
|
|
|
|
'Monkey',
|
|
|
|
|
'Rooster',
|
|
|
|
|
'Wolf',
|
2022-05-12 20:25:40 +00:00
|
|
|
'Tiger',
|
2022-01-28 22:14:50 +00:00
|
|
|
'FlyingPig',
|
|
|
|
|
'Dragon',
|
|
|
|
|
],
|
|
|
|
|
achievementKey: 'zodiacZookeeper',
|
2022-05-12 20:25:40 +00:00
|
|
|
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
|
2022-01-28 22:14:50 +00:00
|
|
|
},
|
2021-02-16 23:00:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default ANIMAL_SET_ACHIEVEMENTS;
|