mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 15:17:25 +01:00
15 lines
271 B
JavaScript
15 lines
271 B
JavaScript
import {translator as t} from './helpers';
|
|
|
|
let stable = {
|
|
pets: {
|
|
'Mammoth-Base': t('mammoth'),
|
|
'MantisShrimp-Base': t('mantisShrimp')
|
|
},
|
|
mounts: {
|
|
'Mammoth-Base': t('mammoth'),
|
|
'MantisShrimp-Base': t('mantisShrimp')
|
|
}
|
|
};
|
|
|
|
export default stable;
|