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