diff --git a/img/sprites/spritesmith/promo/promo_mystery_201501.png b/img/sprites/spritesmith/promo/promo_mystery_201501.png new file mode 100644 index 0000000000..8c618b5ba4 Binary files /dev/null and b/img/sprites/spritesmith/promo/promo_mystery_201501.png differ diff --git a/locales/en/gear.json b/locales/en/gear.json index 8d443000d1..a511c7e204 100644 --- a/locales/en/gear.json +++ b/locales/en/gear.json @@ -249,6 +249,8 @@ "armorMystery201410Notes": "Scaly, slimy, and strong! Confers no benefit. October 2014 Subscriber Item.", "armorMystery201412Text": "Penguin Suit", "armorMystery201412Notes": "You're a penguin! Confers no benefit. December 2014 Subscriber Item.", + "armorMystery201501Text": "Starry Armor", + "armorMystery201501Notes": "Galaxies shimmer in the metal of this armor, strengthening the wearer's resolve. Confers no benefit. January 2015 Subscriber Item.", "armorMystery301404Text": "Steampunk Suit", "armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.", @@ -374,6 +376,8 @@ "headMystery201411Notes": "This is the traditional helmet worn in the beloved Habitican sport of Balance Ball, which consists of covering yourself with heavy protective gear and then committing to a healthy work-life balance..... WHILE PURSUED BY HIPPOGRIFFS. Confers no benefit. November 2014 Subscriber Item.", "headMystery201412Text": "Penguin Hat", "headMystery201412Notes": "Who's a penguin? Confers no benefit. December 2014 Subscriber Item.", + "headMystery201501Text": "Starry Helm", + "headMystery201501Notes": "The constellations flicker and swirl in this helm, guiding the wearer's thoughts towards focus. Confers no benefit. January 2015 Subscriber Item.", "headMystery301404Text": "Fancy Top Hat", "headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.", "headMystery301405Text": "Basic Top Hat", diff --git a/script/content.coffee b/script/content.coffee index 6734d7a0cf..4f31792094 100644 --- a/script/content.coffee +++ b/script/content.coffee @@ -40,6 +40,7 @@ api.mystery = 201410: {start:'2014-10-24',end:'2014-11-02', text:'Winged Goblin Set'} 201411: {start:'2014-11-24',end:'2014-12-02', text:'Feast and Fun Set'} 201412: {start:'2014-12-25',end:'2015-01-02', text:'Penguin Set'} + 201501: {start:'2015-01-26',end:'2015-02-02', text:'Starry Knight Set'} 301404: {start:'3014-03-24',end:'3014-04-02', text:'Steampunk Standard Set'} 301405: {start:'3014-04-24',end:'3014-05-02', text:'Steampunk Accessories Set'} wondercon: {start:'2014-03-24',end:'2014-04-01'} # not really, but the mechanic works @@ -198,6 +199,7 @@ gear = 201409: text: t('armorMystery201409Text'), notes: t('armorMystery201409Notes'), mystery:'201409', value: 0 201410: text: t('armorMystery201410Text'), notes: t('armorMystery201410Notes'), mystery:'201410', value: 0 201412: text: t('armorMystery201412Text'), notes: t('armorMystery201412Notes'), mystery:'201412', value: 0 + 201501: text: t('armorMystery201501Text'), notes: t('armorMystery201501Notes'), mystery:'201501', value: 0 301404: text: t('armorMystery301404Text'), notes: t('armorMystery301404Notes'), mystery:'301404', value: 0 head: @@ -272,6 +274,7 @@ gear = 201408: text: t('headMystery201408Text'), notes: t('headMystery201408Notes'), mystery:'201408', value: 0 201411: text: t('headMystery201411Text'), notes: t('headMystery201411Notes'), mystery:'201411', value: 0 201412: text: t('headMystery201412Text'), notes: t('headMystery201412Notes'), mystery:'201412', value: 0 + 201501: text: t('headMystery201501Text'), notes: t('headMystery201501Notes'), mystery:'201501', value: 0 301404: text: t('headMystery301404Text'), notes: t('headMystery301404Notes'), mystery:'301404', value: 0 301405: text: t('headMystery301405Text'), notes: t('headMystery301405Notes'), mystery:'301405', value: 0