diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201505/head_mystery_201505.png b/common/img/sprites/spritesmith/gear/events/mystery_201505/head_mystery_201505.png new file mode 100644 index 0000000000..24a5a7fe36 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201505/head_mystery_201505.png differ diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201505/shop_head_mystery_201505.png b/common/img/sprites/spritesmith/gear/events/mystery_201505/shop_head_mystery_201505.png new file mode 100644 index 0000000000..64a926f7c2 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201505/shop_head_mystery_201505.png differ diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201505/shop_weapon_mystery_201505.png b/common/img/sprites/spritesmith/gear/events/mystery_201505/shop_weapon_mystery_201505.png new file mode 100644 index 0000000000..c562985e4a Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201505/shop_weapon_mystery_201505.png differ diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201505/weapon_mystery_201505.png b/common/img/sprites/spritesmith/gear/events/mystery_201505/weapon_mystery_201505.png new file mode 100644 index 0000000000..128d909184 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201505/weapon_mystery_201505.png differ diff --git a/common/img/sprites/spritesmith/promo/promo_mystery_201505.png b/common/img/sprites/spritesmith/promo/promo_mystery_201505.png new file mode 100644 index 0000000000..bac60f1b66 Binary files /dev/null and b/common/img/sprites/spritesmith/promo/promo_mystery_201505.png differ diff --git a/common/locales/en/gear.json b/common/locales/en/gear.json index 36aca251eb..ba2868d61e 100644 --- a/common/locales/en/gear.json +++ b/common/locales/en/gear.json @@ -133,6 +133,8 @@ "weaponMystery201411Notes": "Stab your enemies or dig in to your favorite foods - this versatile pitchfork does it all! Confers no benefit. November 2014 Subscriber Item.", "weaponMystery201502Text": "Shimmery Winged Staff of Love and Also Truth", "weaponMystery201502Notes": "For WINGS! For LOVE! For ALSO TRUTH! Confers no benefit. February 2015 Subscriber Item.", + "weaponMystery201505Text": "Green Knight Lance", + "weaponMystery201505Notes": "This green and silver lance has unseated many opponents from their mounts. Confers no benefit. May 2015 Subscriber Item.", "weaponMystery301404Text": "Steampunk Cane", "weaponMystery301404Notes": "Excellent for taking a turn about town. March 3015 Subscriber Item. Confers no benefit.", @@ -413,6 +415,8 @@ "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.", + "headMystery201505Text": "Green Knight Helm", + "headMystery201505Notes": "The green plume on this iron helm waves proudly. Confers no benefit. May 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/common/script/content.coffee b/common/script/content.coffee index 1f628faf49..cc415e054d 100644 --- a/common/script/content.coffee +++ b/common/script/content.coffee @@ -48,6 +48,7 @@ api.mystery = 201502: {start:'2015-02-24',end:'2015-03-02', text:'Winged Enchanter Set'} 201503: {start:'2015-03-25',end:'2015-04-02', text:'Aquamarine Set'} 201504: {start:'2015-04-24',end:'2015-05-02', text:'Busy Bee Set'} + 201505: {start:'2015-05-25',end:'2015-06-02', text:'Green 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 @@ -137,6 +138,7 @@ gear = mystery: 201411: text: t('weaponMystery201411Text'), notes: t('weaponMystery201411Notes'), mystery:'201411', value: 0 201502: text: t('weaponMystery201502Text'), notes: t('weaponMystery201502Notes'), mystery:'201502', value: 0 + 201505: text: t('weaponMystery201505Text'), notes: t('weaponMystery201505Notes'), mystery:'201505', value: 0 301404: text: t('weaponMystery301404Text'), notes: t('weaponMystery301404Notes'), mystery:'301404', value: 0 armor: @@ -301,6 +303,7 @@ gear = 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 + 201505: text: t('headMystery201505Text'), notes: t('headMystery201505Notes'), mystery:'201505', value: 0 301404: text: t('headMystery301404Text'), notes: t('headMystery301404Notes'), mystery:'301404', value: 0 301405: text: t('headMystery301405Text'), notes: t('headMystery301405Notes'), mystery:'301405', value: 0 diff --git a/migrations/mysteryitems.js b/migrations/mysteryitems.js index a95b1efc90..5a702d8e60 100644 --- a/migrations/mysteryitems.js +++ b/migrations/mysteryitems.js @@ -2,7 +2,7 @@ var _id = ''; var update = { $addToSet: { 'purchased.plan.mysteryItems':{ - $each:['armor_mystery_201504','back_mystery_201504'] + $each:['weapon_mystery_201505','head_mystery_201505'] } } }; diff --git a/website/views/shared/new-stuff.jade b/website/views/shared/new-stuff.jade index a2ad16fd80..30347ea24a 100644 --- a/website/views/shared/new-stuff.jade +++ b/website/views/shared/new-stuff.jade @@ -1,18 +1,25 @@ -h5 5/20/2015 - NEW PET QUEST: SHEEP! +h5 5/25/2015 - MAY SUBSCRIBER ITEM SET: GREEN KNIGHT! hr tr td - .quest_sheep.pull-right - h5 New Pet Quest: Sheep! - p It looks like there's some ba-a-a-ad weather in the Taskan countryside! Can you and your party be diligent enough to defeat the Thunder Ram? If so, you may find yourself with some wooly sheep pets... - p.small.muted art by Starsystemic and Misceo - p.small.muted writing by Salambander, Leephon, and Lemoness + .promo_mystery_201505.pull-right + h5 May Subscriber Item Set Revealed: Green Knight! + p The May Subscriber Item has been revealed: the Green Knight Item Set! All May subscribers will receive the Green Knight Helm and the Green Knight Lance. You still have six days to subscribe and receive the item set, along with the ability to buy Gems with Gold! Thank you so much for your support - we really do rely on you to keep HabitRPG free to use and running smoothly. + p.small.muted by Lemoness hr a(href='/static/old-news', target='_blank') Read older news mixin oldNews + h5 5/20/2015 - NEW PET QUEST: SHEEP! + tr + td + .quest_sheep.pull-right + h5 New Pet Quest: Sheep! + p It looks like there's some ba-a-a-ad weather in the Taskan countryside! Can you and your party be diligent enough to defeat the Thunder Ram? If so, you may find yourself with some wooly sheep pets... + p.small.muted art by Starsystemic and Misceo + p.small.muted writing by Salambander, Leephon, and Lemoness h5 5/13/2015 - NEW ANIMAL SKINS AND ACCESSORIES, INN IMPROVEMENTS, COPY CHAT TO TO-DO, AND EXTRA INFO tr td