mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-15 05:37:22 +01:00
17 lines
449 B
JavaScript
17 lines
449 B
JavaScript
const STABLE_ACHIEVEMENTS = {
|
|
ACHIEVEMENT_BEAST_MASTER: {
|
|
masterAchievement: 'beastMasterName',
|
|
masterNotificationType: 'ACHIEVEMENT_STABLE',
|
|
},
|
|
ACHIEVEMENT_MOUNT_MASTER: {
|
|
masterAchievement: 'mountMasterName',
|
|
masterNotificationType: 'ACHIEVEMENT_STABLE',
|
|
},
|
|
ACHIEVEMENT_TRIAD_BINGO: {
|
|
masterAchievement: 'triadBingoName',
|
|
masterNotificationType: 'ACHIEVEMENT_STABLE',
|
|
},
|
|
};
|
|
|
|
export default STABLE_ACHIEVEMENTS;
|