Merge remote-tracking branch 'CuriousMagpie/zodiac-zookeeper' into release

This commit is contained in:
SabreCat
2022-02-01 14:30:02 -06:00
8 changed files with 219 additions and 2 deletions

View File

@@ -267,6 +267,11 @@ const basicAchievs = {
titleKey: 'achievementShadeOfItAll',
textKey: 'achievementShadeOfItAllText',
},
zodiacZookeeper: {
icon: 'achievement-zodiac',
titleKey: 'achievementZodiacZookeeper',
textKey: 'achievementZodiacZookeeperText',
},
};
Object.assign(achievementsData, basicAchievs);

View File

@@ -26,6 +26,25 @@ const ANIMAL_SET_ACHIEVEMENTS = {
achievementKey: 'domesticated',
notificationType: 'ACHIEVEMENT_DOMESTICATED',
},
zodiacZookeeper: {
type: 'pet',
species: [
'Rat',
'Cow',
'Bunny',
'Snake',
'Horse',
'Sheep',
'Monkey',
'Rooster',
'Wolf',
'Tiger',
'FlyingPig',
'Dragon',
],
achievementKey: 'zodiacZookeeper',
notificationType: 'ACHIEVEMENT_ZODIAC_ZOOKEEPER',
},
};
export default ANIMAL_SET_ACHIEVEMENTS;