mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 15:17:25 +01:00
12 lines
186 B
JavaScript
12 lines
186 B
JavaScript
import {translator as t} from './helpers';
|
|
|
|
let potion = {
|
|
type: 'potion',
|
|
text: t('potionText'),
|
|
notes: t('potionNotes'),
|
|
value: 25,
|
|
key: 'potion',
|
|
};
|
|
|
|
export default potion;
|