feat(content): Shade pet/mount collection achievements

This commit is contained in:
Sabe Jones
2021-10-21 10:49:22 -05:00
parent 73b3d9bc56
commit d2ddb743b6
14 changed files with 320 additions and 178 deletions

View File

@@ -257,6 +257,16 @@ const basicAchievs = {
titleKey: 'achievementDomesticated',
textKey: 'achievementDomesticatedText',
},
shadyCustomer: {
icon: 'achievement-shadyCustomer',
titleKey: 'achievementShadyCustomer',
textKey: 'achievementShadyCustomerText',
},
shadeOfItAll: {
icon: 'achievement-shadeOfItAll',
titleKey: 'achievementShadeOfItAll',
textKey: 'achievementShadeOfItAllText',
},
};
Object.assign(achievementsData, basicAchievs);

View File

@@ -62,6 +62,13 @@ const ANIMAL_COLOR_ACHIEVEMENTS = [
mountAchievement: 'wildBlueYonder',
mountNotificationType: 'ACHIEVEMENT_WILD_BLUE_YONDER',
},
{
color: 'Shade',
petAchievement: 'shadyCustomer',
petNotificationType: 'ACHIEVEMENT_SHADY_CUSTOMER',
mountAchievement: 'shadeOfItAll',
mountNotificationType: 'ACHIEVEMENT_SHADE_OF_IT_ALL',
},
];
export default ANIMAL_COLOR_ACHIEVEMENTS;