mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 22:27:26 +01:00
feat(content): Vampire Hatching Potions
This commit is contained in:
@@ -149,6 +149,13 @@ const premium = {
|
||||
value: 2,
|
||||
text: t('hatchingPotionGhost'),
|
||||
limited: true,
|
||||
event: EVENTS.fall2020,
|
||||
canBuy () {
|
||||
return moment().isBefore('2020-11-02');
|
||||
},
|
||||
_addlNotes: t('premiumPotionAddlNotes', {
|
||||
date: t('dateEndOctober'),
|
||||
}),
|
||||
},
|
||||
Holly: {
|
||||
value: 2,
|
||||
@@ -276,6 +283,13 @@ const premium = {
|
||||
value: 2,
|
||||
text: t('hatchingPotionShadow'),
|
||||
limited: true,
|
||||
event: EVENTS.fall2020,
|
||||
canBuy () {
|
||||
return moment().isBefore('2020-11-02');
|
||||
},
|
||||
_addlNotes: t('premiumPotionAddlNotes', {
|
||||
date: t('dateEndOctober'),
|
||||
}),
|
||||
},
|
||||
Amber: {
|
||||
value: 2,
|
||||
@@ -347,6 +361,18 @@ const premium = {
|
||||
canBuy: hasQuestAchievementFunction('turquoise'),
|
||||
_addlNotes: t('premiumPotionUnlimitedNotes'),
|
||||
},
|
||||
Vampire: {
|
||||
value: 2,
|
||||
text: t('hatchingPotionVampire'),
|
||||
limited: true,
|
||||
event: EVENTS.fall2020,
|
||||
canBuy () {
|
||||
return moment().isBefore('2020-11-02');
|
||||
},
|
||||
_addlNotes: t('premiumPotionAddlNotes', {
|
||||
date: t('dateEndOctober'),
|
||||
}),
|
||||
},
|
||||
};
|
||||
|
||||
const wacky = {
|
||||
|
||||
Reference in New Issue
Block a user