feat(content): mystery items Nov 2019

This commit is contained in:
Sabe Jones
2019-11-21 16:17:06 -06:00
parent 4ca4fd9ae7
commit e0b8cfbaa7
13 changed files with 45 additions and 29 deletions

View File

@@ -2,8 +2,8 @@
import { model as User } from '../../website/server/models/user'; import { model as User } from '../../website/server/models/user';
import { model as UserNotification } from '../../website/server/models/userNotification'; import { model as UserNotification } from '../../website/server/models/userNotification';
const MIGRATION_NAME = 'mystery_items_201910'; const MIGRATION_NAME = 'mystery_items_201911';
const MYSTERY_ITEMS = ['armor_mystery_201910', 'head_mystery_201910']; const MYSTERY_ITEMS = ['weapon_mystery_201911', 'head_mystery_201911'];
const progressCount = 1000; const progressCount = 1000;
let count = 0; let count = 0;

View File

@@ -353,6 +353,8 @@
"weaponMystery201708Notes": "The fiery glow of this sword will make quick work of even dark red Tasks! Confers no benefit. August 2017 Subscriber Item.", "weaponMystery201708Notes": "The fiery glow of this sword will make quick work of even dark red Tasks! Confers no benefit. August 2017 Subscriber Item.",
"weaponMystery201811Text": "Splendid Sorcerer's Staff", "weaponMystery201811Text": "Splendid Sorcerer's Staff",
"weaponMystery201811Notes": "This magical stave is as powerful as it is elegant. Confers no benefit. November 2018 Subscriber Item.", "weaponMystery201811Notes": "This magical stave is as powerful as it is elegant. Confers no benefit. November 2018 Subscriber Item.",
"weaponMystery201911Text": "Charmed Crystal Staff",
"weaponMystery201911Notes": "The crystal ball atop this staff can show you the future, but beware! Using such dangerous knowledge can change a person in unexpected ways. Confers no benefit. December 2019 Subscriber Item.",
"weaponMystery301404Text": "Steampunk Cane", "weaponMystery301404Text": "Steampunk Cane",
"weaponMystery301404Notes": "Excellent for taking a turn about town. March 3015 Subscriber Item. Confers no benefit.", "weaponMystery301404Notes": "Excellent for taking a turn about town. March 3015 Subscriber Item. Confers no benefit.",
@@ -1407,6 +1409,8 @@
"headMystery201909Notes": "Every acorn needs a hat! Er, cupule, if you want to get technical about it. Confers no benefit. September 2019 Subscriber Item.", "headMystery201909Notes": "Every acorn needs a hat! Er, cupule, if you want to get technical about it. Confers no benefit. September 2019 Subscriber Item.",
"headMystery201910Text": "Cryptic Flame", "headMystery201910Text": "Cryptic Flame",
"headMystery201910Notes": "These flames reveal arcane secrets before your very eyes! Confers no benefit. October 2019 Subscriber Item.", "headMystery201910Notes": "These flames reveal arcane secrets before your very eyes! Confers no benefit. October 2019 Subscriber Item.",
"headMystery201911Text": "Charmed Crystal Hat",
"headMystery201911Notes": "Each of the crystal points attached to this hat endows you with a special power: mystic clairvoyance, arcane wisdom, and... sorcerous plate spinning? All right then. Confers no benefit. December 2019 Subscriber Item.",
"headMystery301404Text": "Fancy Top Hat", "headMystery301404Text": "Fancy Top Hat",
"headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.", "headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.",
"headMystery301405Text": "Basic Top Hat", "headMystery301405Text": "Basic Top Hat",

View File

@@ -164,6 +164,7 @@
"mysterySet201908": "Footloose Faun Set", "mysterySet201908": "Footloose Faun Set",
"mysterySet201909": "Affable Acorn Set", "mysterySet201909": "Affable Acorn Set",
"mysterySet201910": "Cryptic Flame Set", "mysterySet201910": "Cryptic Flame Set",
"mysterySet201911": "Crystal Charmer Set",
"mysterySet301404": "Steampunk Standard Set", "mysterySet301404": "Steampunk Standard Set",
"mysterySet301405": "Steampunk Accessories Set", "mysterySet301405": "Steampunk Accessories Set",
"mysterySet301703": "Peacock Steampunk Set", "mysterySet301703": "Peacock Steampunk Set",

View File

@@ -757,6 +757,12 @@ const head = {
mystery: '201910', mystery: '201910',
value: 0, value: 0,
}, },
201911: {
text: t('headMystery201911Text'),
notes: t('headMystery201911Notes'),
mystery: '201911',
value: 0,
},
301404: { 301404: {
text: t('headMystery301404Text'), text: t('headMystery301404Text'),
notes: t('headMystery301404Notes'), notes: t('headMystery301404Notes'),
@@ -946,6 +952,12 @@ const weapon = {
mystery: '201811', mystery: '201811',
value: 0, value: 0,
}, },
201911: {
text: t('weaponMystery201911Text'),
notes: t('weaponMystery201911Notes'),
mystery: '201911',
value: 0,
},
301404: { 301404: {
text: t('weaponMystery301404Text'), text: t('weaponMystery301404Text'),
notes: t('weaponMystery301404Notes'), notes: t('weaponMystery301404Notes'),

View File

@@ -278,6 +278,10 @@ const mysterySets = {
start: '2019-10-24', start: '2019-10-24',
end: '2019-11-02', end: '2019-11-02',
}, },
201911: {
start: '2019-11-21',
end: '2019-12-02',
},
301404: { 301404: {
start: '3014-03-24', start: '3014-03-24',
end: '3014-04-02', end: '3014-04-02',

Binary file not shown.

After

Width:  |  Height:  |  Size: 743 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 697 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 570 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 615 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -4,7 +4,7 @@ const api = {};
// @TODO export this const, cannot export it from here because only routes are exported from // @TODO export this const, cannot export it from here because only routes are exported from
// controllers // controllers
const LAST_ANNOUNCEMENT_TITLE = 'HABITICA BLOG POSTS: NEW GUILDS AND GAMIFYING TASKS'; const LAST_ANNOUNCEMENT_TITLE = 'NOVEMBER SUBSCRIBER ITEMS AVAILABLE! AND UPCOMING CHANGES TO MYSTERY ITEM DISTRIBUTION';
const worldDmg = { // @TODO const worldDmg = { // @TODO
bailey: false, bailey: false,
}; };
@@ -31,39 +31,34 @@ api.getNews = {
<div class="mr-3 ${baileyClass}"></div> <div class="mr-3 ${baileyClass}"></div>
<div class="media-body"> <div class="media-body">
<h1 class="align-self-center">${res.t('newStuff')}</h1> <h1 class="align-self-center">${res.t('newStuff')}</h1>
<h2>11/19/2019 - ${LAST_ANNOUNCEMENT_TITLE}</h2> <h2>11/21/2019 - ${LAST_ANNOUNCEMENT_TITLE}</h2>
</div> </div>
</div> </div>
<hr/> <hr/>
<div class="scene_yarn_boss center-block"></div> <h3>November Subscriber Items Revealed!</h3>
<h3>Guild Spotlight: New and Notable Guilds for November!</h3>
<p> <p>
There's a new <a The November Subscriber Item has been revealed: the Crystal Charmer Item Set! You only
href='https://habitica.wordpress.com/2019/11/19/new-and-notable-guild-spotlight-11/' have until November 30 to <a href='/user/settings/subscription'>receive the item set
target='_blank'>Guild Spotlight on the blog</a> that highlights yet another selection when you subscribe</a>. If you're already an active subscriber, reload the site and then
of the upcoming Guilds in Habitica dedicated to a variety of topics! Check it out now to head to Inventory > Items to claim your gear!
find some of Habitica's best new communities.
</p>
<div class="small mb-3">by shanaqui</div>
<div class="scene_office center-block"></div>
<h3>Use Case Spotlight: Gamifying Your Tasks</h3>
<p>
This month's <a
href='https://habitica.wordpress.com/2019/11/19/use-case-spotlight-gamifying-your-tasks/'
target='_blank'>Use Case Spotlight</a> is about Gamifying Your Tasks! It features a
number of great suggestions submitted by Habiticans in the <a
href='/groups/guild/1d3a10bf-60aa-4806-a38b-82d1084a59e6'>Use Case Spotlights Guild</a>.
We hope it helps any of you who might be looking for ways to add more fun and adventure
to your tasks.
</p> </p>
<p> <p>
Plus, we're collecting user submissions for the next spotlight! How do you use Subscribers also receive the ability to buy Gems for Gold -- the longer you subscribe,
Habitica's social spaces to help motivate yourself? Well be featuring player-submitted the more Gems you can buy per month! There are other perks as well, such as longer
examples in Use Case Spotlights on the Habitica Blog next month, so post your access to uncompressed data and a cute Jackalope pet. Best of all, subscriptions let us
suggestions in the Use Case Spotlight Guild now. We look forward to learning more about keep Habitica running. Thank you very much for your support -- it means a lot to us.
how you use Habitica to improve your life and get things done!
</p> </p>
<div class="small mb-3">by shanaqui</div> <div class="promo_mystery_201911 center-block"></div>
<h3>Subscriber Gear Release Changes</h3>
<p>
Starting next month, we're changing the way Subscriber sets are released! We'll be
releasing the outfits at the beginning of the month. With this change, subscribers can
enjoy their new gear all month long, and new subscribers will receive the latest gear
set as soon as they sign up, any day of that month. The gear will come out around the
first of the month, with a little wiggle room for time zones much like when Gem-buying
caps reset. We hope this change helps you enjoy your subscription even more!
</p>
<div class="small mb-3">by Beffymaroo and SabreCat</div>
</div> </div>
`, `,
}); });