mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
60 lines
836 B
JavaScript
60 lines
836 B
JavaScript
import {
|
|
merge,
|
|
translator as t,
|
|
setHatchingPotionDefaults
|
|
} from './helpers';
|
|
|
|
let dropPotions = {
|
|
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,
|
|
},
|
|
};
|
|
|
|
let premiumPotions = {
|
|
Spooky: {
|
|
value: 2,
|
|
addlNotes: t('premiumPotionAddlNotes'),
|
|
premium: true,
|
|
limited: true,
|
|
canBuy: () => { return false },
|
|
},
|
|
};
|
|
|
|
setHatchingPotionDefaults(dropPotions);
|
|
setHatchingPotionDefaults(premiumPotions);
|
|
|
|
let allPotions = merge([dropPotions, premiumPotions]);
|
|
|
|
export default {
|
|
all: allPotions,
|
|
drop: dropPotions,
|
|
premium: premiumPotions,
|
|
};
|