feat(content): Cupid Hatching Potions

This commit is contained in:
Sabe Jones
2017-02-02 17:29:33 +00:00
parent d52d759733
commit 3fe847f329
40 changed files with 9 additions and 2 deletions

View File

@@ -90,6 +90,12 @@ let premium = {
limited: true,
_season: 'winter',
},
Cupid: {
value: 2,
text: t('hatchingPotionCupid'),
limited: true,
_season: 'valentines',
},
};
each(drops, (pot, key) => {
@@ -118,7 +124,7 @@ each(premium, (pot, key) => {
premium: true,
limited: false,
canBuy () {
return false;
return pot._season === 'valentines';
},
});
});