mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +01:00
Content: Beta Groups Testing Achievement (#14014)
* content: beta Groups testing achievement * resolving merge conflict
This commit is contained in:
@@ -132,5 +132,8 @@
|
|||||||
"achievementBirdsOfAFeatherModalText": "You collected all the flying pets!",
|
"achievementBirdsOfAFeatherModalText": "You collected all the flying pets!",
|
||||||
"achievementReptacularRumble": "Reptacular Rumble",
|
"achievementReptacularRumble": "Reptacular Rumble",
|
||||||
"achievementReptacularRumbleText": "Has hatched all the standard colors of reptile pets: Alligator, Pterodactyl, Snake, Triceratops, Turtle, Tyrannosaurus Rex, and Velociraptor!",
|
"achievementReptacularRumbleText": "Has hatched all the standard colors of reptile pets: Alligator, Pterodactyl, Snake, Triceratops, Turtle, Tyrannosaurus Rex, and Velociraptor!",
|
||||||
"achievementReptacularRumbleModalText": "You collected all the reptile pets!"
|
"achievementReptacularRumbleModalText": "You collected all the reptile pets!",
|
||||||
|
"achievementGroupsBeta2022":"Interactive Beta Tester",
|
||||||
|
"achievementGroupsBeta2022Text":"You and your group provided invaluable feedback to help Habitica test.",
|
||||||
|
"achievementGroupsBeta2022ModalText":"You and your groups helped Habitica by testing and providing feedback!"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -372,6 +372,11 @@ const specialAchievs = {
|
|||||||
titleKey: 'achievementKickstarter2019',
|
titleKey: 'achievementKickstarter2019',
|
||||||
textKey: 'achievementKickstarter2019Text',
|
textKey: 'achievementKickstarter2019Text',
|
||||||
},
|
},
|
||||||
|
groupsBeta2022: {
|
||||||
|
icon: 'achievement-groupsBeta2022',
|
||||||
|
titleKey: 'achievementGroupsBeta2022',
|
||||||
|
textKey: 'achievementGroupsBeta2022Text',
|
||||||
|
},
|
||||||
};
|
};
|
||||||
Object.assign(achievementsData, specialAchievs);
|
Object.assign(achievementsData, specialAchievs);
|
||||||
|
|
||||||
|
|||||||
@@ -344,6 +344,10 @@ function _getSpecialAchievements (user, language) {
|
|||||||
_addSimple(result, user, { path: 'kickstarter2019', language });
|
_addSimple(result, user, { path: 'kickstarter2019', language });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (user.achievements.groupsBeta2022) {
|
||||||
|
_addSimple(result, user, { path: 'groupsBeta2022', language });
|
||||||
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -156,6 +156,7 @@ export default new Schema({
|
|||||||
hatchedPet: Boolean,
|
hatchedPet: Boolean,
|
||||||
fedPet: Boolean,
|
fedPet: Boolean,
|
||||||
purchasedEquipment: Boolean,
|
purchasedEquipment: Boolean,
|
||||||
|
groupsBeta2022: Boolean,
|
||||||
},
|
},
|
||||||
|
|
||||||
backer: {
|
backer: {
|
||||||
|
|||||||
Reference in New Issue
Block a user