feat(content): Subscriber Items and Magic Potions

This commit is contained in:
Sabe Jones
2018-09-25 16:30:50 -05:00
parent a094e13352
commit 563f3e2012
57 changed files with 62 additions and 24 deletions

View File

@@ -3,7 +3,7 @@ import defaults from 'lodash/defaults';
import each from 'lodash/each';
import t from './translation';
const CURRENT_SEASON = '_NONE_';
const CURRENT_SEASON = 'October';
let drops = {
Base: {
@@ -100,7 +100,7 @@ let premium = {
value: 2,
text: t('hatchingPotionSpooky'),
limited: true,
_season: 'October',
_season: '_PENDING_',
},
Ghost: {
value: 2,
@@ -138,6 +138,12 @@ let premium = {
limited: true,
_season: 'July',
},
Glow: {
value: 2,
text: t('hatchingPotionGlow'),
limited: true,
_season: 'October',
},
};
each(drops, (pot, key) => {