mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
15 lines
274 B
JavaScript
15 lines
274 B
JavaScript
let t = require('./helpers/translator.js');
|
|
|
|
let stable = {
|
|
pets: {
|
|
'Mammoth-Base': t('mammoth'),
|
|
'MantisShrimp-Base': t('mantisShrimp')
|
|
},
|
|
mounts: {
|
|
'Mammoth-Base': t('mammoth'),
|
|
'MantisShrimp-Base': t('mantisShrimp')
|
|
}
|
|
};
|
|
|
|
module.exports = stable;
|