mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 22:27:26 +01:00
feat(content): Subscriber Items and Magic Potions
This commit is contained in:
@@ -211,6 +211,12 @@ let armor = {
|
||||
mystery: '201808',
|
||||
value: 0,
|
||||
},
|
||||
201809: {
|
||||
text: t('armorMystery201809Text'),
|
||||
notes: t('armorMystery201809Notes'),
|
||||
mystery: '201809',
|
||||
value: 0,
|
||||
},
|
||||
301404: {
|
||||
text: t('armorMystery301404Text'),
|
||||
notes: t('armorMystery301404Notes'),
|
||||
@@ -619,6 +625,12 @@ let head = {
|
||||
mystery: '201808',
|
||||
value: 0,
|
||||
},
|
||||
201809: {
|
||||
text: t('headMystery201809Text'),
|
||||
notes: t('headMystery201809Notes'),
|
||||
mystery: '201809',
|
||||
value: 0,
|
||||
},
|
||||
301404: {
|
||||
text: t('headMystery301404Text'),
|
||||
notes: t('headMystery301404Notes'),
|
||||
|
||||
@@ -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) => {
|
||||
|
||||
@@ -222,6 +222,10 @@ let mysterySets = {
|
||||
start: '2018-08-23',
|
||||
end: '2018-09-02',
|
||||
},
|
||||
201809: {
|
||||
start: '2018-09-25',
|
||||
end: '2018-10-02',
|
||||
},
|
||||
301404: {
|
||||
start: '3014-03-24',
|
||||
end: '3014-04-02',
|
||||
|
||||
@@ -9,15 +9,15 @@ const featuredItems = {
|
||||
},
|
||||
{
|
||||
type: 'premiumHatchingPotion',
|
||||
path: 'premiumHatchingPotions.Ember',
|
||||
path: 'premiumHatchingPotions.Ghost',
|
||||
},
|
||||
{
|
||||
type: 'eggs',
|
||||
path: 'eggs.Dragon',
|
||||
type: 'premiumHatchingPotion',
|
||||
path: 'premiumHatchingPotions.Glow',
|
||||
},
|
||||
{
|
||||
type: 'card',
|
||||
path: 'cardTypes.congrats',
|
||||
path: 'cardTypes.getwell',
|
||||
},
|
||||
],
|
||||
quests: [
|
||||
|
||||
Reference in New Issue
Block a user