diff --git a/website/common/locales/en/gear.json b/website/common/locales/en/gear.json index 23450aec83..a786bb03b3 100644 --- a/website/common/locales/en/gear.json +++ b/website/common/locales/en/gear.json @@ -919,6 +919,8 @@ "armorMystery201909Notes": "Your tough exterior is protective, but it's still best to keep an eye out for squirrels... Confers no benefit. September 2019 Subscriber Item.", "armorMystery201910Text": "Cryptic Armor", "armorMystery201910Notes": "This enigmatic armor will protect you from terrors seen and unseen. Confers no benefit. October 2019 Subscriber Item.", + "armorMystery202006Text": "Multichrome Merfolk Tail", + "armorMystery202006Notes": "Even among the brightest corals and anemones, this tail proudly stands out from the crowd! Confers no benefit. June 2020 Subscriber Item.", "armorMystery301404Text": "Steampunk Suit", "armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.", "armorMystery301703Text": "Steampunk Peacock Gown", @@ -1499,6 +1501,8 @@ "headMystery202001Notes": "Your hearing will be so sharp, you'll hear the stars twinkling and the moon spinning. Confers no benefit. January 2020 Subscriber Item.", "headMystery202003Text": "Barbed Helm", "headMystery202003Notes": "Be careful, this helm is sharp in more ways than one! Confers no benefit. March 2020 Subscriber Item.", + "headMystery202006Text": "Sugilite Circlet", + "headMystery202006Notes": "The positive energy of these radiant purple stones will draw the sea's friendliest creatures to your side. Confers no benefit. June 2020 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/website/common/locales/en/subscriber.json b/website/common/locales/en/subscriber.json index e25409921b..c84941dd0a 100644 --- a/website/common/locales/en/subscriber.json +++ b/website/common/locales/en/subscriber.json @@ -173,6 +173,7 @@ "mysterySet202003": "Barbed Battler Set", "mysterySet202004": "Mighty Monarch Set", "mysterySet202005": "Wondrous Wyvern Set", + "mysterySet202006": "Multichrome Merfolk Set", "mysterySet301404": "Steampunk Standard Set", "mysterySet301405": "Steampunk Accessories Set", "mysterySet301703": "Peacock Steampunk Set", diff --git a/website/common/script/content/gear/sets/mystery.js b/website/common/script/content/gear/sets/mystery.js index dc7b8538f1..4f564766b5 100644 --- a/website/common/script/content/gear/sets/mystery.js +++ b/website/common/script/content/gear/sets/mystery.js @@ -265,6 +265,12 @@ const armor = { mystery: '201910', value: 0, }, + 202006: { + text: t('armorMystery202006Text'), + notes: t('armorMystery202006Notes'), + mystery: '202006', + value: 0, + }, 301404: { text: t('armorMystery301404Text'), notes: t('armorMystery301404Notes'), @@ -817,6 +823,12 @@ const head = { mystery: '202003', value: 0, }, + 202006: { + text: t('headMystery202006Text'), + notes: t('headMystery202006Notes'), + mystery: '202006', + value: 0, + }, 301404: { text: t('headMystery301404Text'), notes: t('headMystery301404Notes'), diff --git a/website/raw_sprites/spritesmith/gear/events/mystery_202006/broad_armor_mystery_202006.png b/website/raw_sprites/spritesmith/gear/events/mystery_202006/broad_armor_mystery_202006.png new file mode 100644 index 0000000000..378285fe2d Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/events/mystery_202006/broad_armor_mystery_202006.png differ diff --git a/website/raw_sprites/spritesmith/gear/events/mystery_202006/head_mystery_202006.png b/website/raw_sprites/spritesmith/gear/events/mystery_202006/head_mystery_202006.png new file mode 100644 index 0000000000..b66094d7a0 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/events/mystery_202006/head_mystery_202006.png differ diff --git a/website/raw_sprites/spritesmith/gear/events/mystery_202006/shop_armor_mystery_202006.png b/website/raw_sprites/spritesmith/gear/events/mystery_202006/shop_armor_mystery_202006.png new file mode 100644 index 0000000000..4e1c3e7a27 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/events/mystery_202006/shop_armor_mystery_202006.png differ diff --git a/website/raw_sprites/spritesmith/gear/events/mystery_202006/shop_head_mystery_202006.png b/website/raw_sprites/spritesmith/gear/events/mystery_202006/shop_head_mystery_202006.png new file mode 100644 index 0000000000..c5580d41f1 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/events/mystery_202006/shop_head_mystery_202006.png differ diff --git a/website/raw_sprites/spritesmith/gear/events/mystery_202006/shop_set_mystery_202006.png b/website/raw_sprites/spritesmith/gear/events/mystery_202006/shop_set_mystery_202006.png new file mode 100644 index 0000000000..392415e1c5 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/events/mystery_202006/shop_set_mystery_202006.png differ diff --git a/website/raw_sprites/spritesmith/gear/events/mystery_202006/slim_armor_mystery_202006.png b/website/raw_sprites/spritesmith/gear/events/mystery_202006/slim_armor_mystery_202006.png new file mode 100644 index 0000000000..b1ca37088a Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/events/mystery_202006/slim_armor_mystery_202006.png differ diff --git a/website/raw_sprites/spritesmith_large/promo_mystery_202006.png b/website/raw_sprites/spritesmith_large/promo_mystery_202006.png new file mode 100644 index 0000000000..9919ca2148 Binary files /dev/null and b/website/raw_sprites/spritesmith_large/promo_mystery_202006.png differ diff --git a/website/server/controllers/api-v3/news.js b/website/server/controllers/api-v3/news.js index 1354e79d6a..4683776c15 100644 --- a/website/server/controllers/api-v3/news.js +++ b/website/server/controllers/api-v3/news.js @@ -4,7 +4,7 @@ const api = {}; // @TODO export this const, cannot export it from here because only routes are exported from // controllers -const LAST_ANNOUNCEMENT_TITLE = 'NEW FEEDBACK FORM! PLUS GUILD AND USE CASE SPOTLIGHTS'; +const LAST_ANNOUNCEMENT_TITLE = 'LAST CHANCE FOR MAY ITEMS'; const worldDmg = { // @TODO bailey: false, }; @@ -31,66 +31,42 @@ api.getNews = {

${res.t('newStuff')}

-

5/21/2020 - ${LAST_ANNOUNCEMENT_TITLE}

+

5/28/2020 - ${LAST_ANNOUNCEMENT_TITLE}


-

New Feedback and Feature Request Form

+
+

Last Chance for Wondrous Wyvern Set

- Great news, Habiticans! We've made it easier for you to send us your feedback about - improving the site and apps. We're transitioning from our existing feedback Trello board - to an easy-to-use Google form. + Reminder: you only have until May 31 to receive the Wondrous Wyvern Set when you sign up for a new Habitica subscription! + Subscribing also gives you lots of great perks, like the ability to buy Gems with Gold. + The longer your subscription, the more Gems you can get!

+

Thanks so much for your support! You help keep Habitica running.

+
by Beffymaroo
+
+

Last Chance for Fairy and Sunshine Glow Hatching Potions

- This will make it simpler for you to tell us your thoughts and ideas, while also making - it simpler for the Habitica team to view, analyze, and take action on what the community - wants and needs. We hope you enjoy the change! + Reminder: Fairy and Sunshine Glow Hatching Potions leave the + Market on May 31. If they come back, it won't be until next year at the earliest, so + don't delay!

+
by OuttaMyMind, Lt.Cabel, Eslyn, Edge, and SabreCat
+
+

Last Chance for Jungle Buddies Pet Quest Bundle

- The new Google form is already live and you can add your comments to it now - via that link. The link will also be directly available via the Send Feedback menu option - in the mobile apps in our next updates. + Don't forget to check out the discounted Jungle Buddies Pet Quest Bundle, featuring the + Monkey, Sloth, and Treeling quests all for seven Gems! Be sure to snag it before it makes + like a tree and leaves the Quest Shop on May 31!

-

- Our existing feedback Trello board will remain public and open for comments until May 28. - After May 28 it will be archived so the Habitica team can still refer to past comments. -

-
by The Habitica Team
-
-

Guild Spotlight: Vikte's Favorites

-

- For this year's Guild Spotlight series, we're highlighting some favorites from - Habitica's staff, moderators, and some high-level contributors! -

-

- This month we're sharing some picks from longtime artisan Vikte! If you want to curate your - Habitica experience and join active, positive Guilds, this is a great way to pick up some - new ideas for Guilds to join. -

-
by shanaqui
-
-

Use Case Spotlight: Managing Your Biggest Projects

-

- This month's Use Case Spotlight is about Managing Your Biggest Projects! It - features a number of great suggestions submitted by Habiticans in the Use Case Spotlights Guild. - We hope it helps any of you who might have a long-term, complex, or intense project - coming up in your life. -

-

- Plus, we're collecting user submissions for the next spotlight! How do you use Habitica - to Adapt to Life Changes? We’ll be featuring player-submitted examples in Use Case - Spotlights on the Habitica Blog next month, so post your suggestions in the Use Case - Spotlight Guild now. We look forward to learning more about how you use Habitica to - improve your life and get things done! -

-
by shanaqui
+
by SabreCat
+
Writing by PixelHunter, Emily Austin, Flutter Bee, and Felipe NA
+
+ Art by JaizakAripaik, Drevian, McCoyly, awakebyjava, PainterProphet, Kiwibot, + greenpencil, fuzzytrees, PainterProphet, aurakami, yamato, leephon, Misceo, and + Oneironaut +
`, });