mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 07:07:35 +01:00
11 lines
340 B
JavaScript
11 lines
340 B
JavaScript
import prefill from '../prefill';
|
|
import sets from '../sets';
|
|
import t from '../../translation';
|
|
|
|
export default prefill({
|
|
0: { text: t('none') },
|
|
1: { text: t('goatee'), price: 2, set: sets.facialHair },
|
|
2: { text: t('shortBeard'), price: 2, set: sets.facialHair },
|
|
3: { text: t('longBeard'), price: 2, set: sets.facialHair },
|
|
});
|