mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 15:48:04 +01:00
49 lines
676 B
JavaScript
49 lines
676 B
JavaScript
import {each, defaults} from 'lodash';
|
|
import t from './helpers/translator';
|
|
|
|
let hatchingPotions = {
|
|
Base: {
|
|
value: 2,
|
|
},
|
|
White: {
|
|
value: 2,
|
|
},
|
|
Desert: {
|
|
value: 2,
|
|
},
|
|
Red: {
|
|
value: 3,
|
|
},
|
|
Shade: {
|
|
value: 3,
|
|
},
|
|
Skeleton: {
|
|
value: 3,
|
|
},
|
|
Zombie: {
|
|
value: 4,
|
|
},
|
|
CottonCandyPink: {
|
|
value: 4,
|
|
},
|
|
CottonCandyBlue: {
|
|
value: 4,
|
|
},
|
|
Golden: {
|
|
value: 5,
|
|
}
|
|
};
|
|
|
|
each(hatchingPotions, function(potion, key) {
|
|
defaults(potion, {
|
|
key: key,
|
|
value: 2,
|
|
text: t(`hatchingPotion${key}`),
|
|
notes: t('hatchingPotionNotes', {
|
|
potText: potion.text
|
|
}),
|
|
});
|
|
});
|
|
|
|
export default hatchingPotions;
|