habitica/website/common/script/content/constants/animalSetAchievements.js

97 lines
1.8 KiB
JavaScript
Raw Normal View History

2021-02-16 23:00:39 +00:00
const ANIMAL_SET_ACHIEVEMENTS = {
legendaryBestiary: {
type: 'pet',
species: [
'Dragon',
'FlyingPig',
'Gryphon',
'SeaSerpent',
'Unicorn',
],
achievementKey: 'legendaryBestiary',
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',
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
2022-03-08 17:43:38 +00:00
},
domesticated: {
type: 'pet',
species: [
'Ferret',
'GuineaPig',
'Rooster',
'FlyingPig',
'Rat',
2021-08-26 23:34:17 +00:00
'Bunny',
'Horse',
'Cow',
],
achievementKey: 'domesticated',
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
},
reptacularRumble: {
type: 'pet',
species: [
'Alligator',
'Pterodactyl',
'Snake',
'Triceratops',
'TRex',
'Turtle',
'Velociraptor',
],
achievementKey: 'reptacularRumble',
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
},
woodlandWizard: {
type: 'pet',
species: [
'Badger',
'BearCub',
'Deer',
'Fox',
'Frog',
'Hedgehog',
'Owl',
'Snail',
'Squirrel',
'Treeling',
],
achievementKey: 'woodlandWizard',
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
},
2022-01-28 22:14:50 +00:00
zodiacZookeeper: {
type: 'pet',
species: [
'Rat',
'Cow',
'Bunny',
'Snake',
'Horse',
'Sheep',
'Monkey',
'Rooster',
'Wolf',
'TigerCub',
2022-01-28 22:14:50 +00:00
'FlyingPig',
'Dragon',
],
achievementKey: 'zodiacZookeeper',
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;