feat(content): Bug Bonanza achievement

This commit is contained in:
Sabe Jones
2020-03-17 09:11:41 -05:00
parent bb8bd8842d
commit 92c3a640ee
16 changed files with 314 additions and 260 deletions
@@ -187,6 +187,11 @@ const basicAchievs = {
titleKey: 'achievementRosyOutlook',
textKey: 'achievementRosyOutlookText',
},
bugBonanza: {
icon: 'achievement-bugBonanza',
titleKey: 'achievementBugBonanza',
textKey: 'achievementBugBonanzaText',
},
};
Object.assign(achievementsData, basicAchievs);
@@ -268,6 +268,12 @@ export const QUEST_SERIES_ACHIEVEMENTS = {
'seaserpent',
'dolphin',
],
bugBonanza: [
'beetle',
'butterfly',
'snail',
'spider',
],
};
export const ANIMAL_COLOR_ACHIEVEMENTS = [
+1 -1
View File
@@ -195,7 +195,7 @@ api.mountInfo = stable.mountInfo;
// For seasonal events, change this constant:
const FOOD_SEASON = 'Pie';
const FOOD_SEASON = 'Normal';
api.food = {
Meat: {
@@ -199,6 +199,7 @@ function _getBasicAchievements (user, language) {
_addSimple(result, user, { path: 'pearlyPro', language });
_addSimple(result, user, { path: 'tickledPink', language });
_addSimple(result, user, { path: 'rosyOutlook', language });
_addSimple(result, user, { path: 'bugBonanza', language });
_addSimpleWithMasterCount(result, user, { path: 'beastMaster', language });
_addSimpleWithMasterCount(result, user, { path: 'mountMaster', language });