diff --git a/website/client/app.vue b/website/client/app.vue
index 786e4a663f..caa6ac7ba0 100644
--- a/website/client/app.vue
+++ b/website/client/app.vue
@@ -452,4 +452,5 @@ export default {
+
diff --git a/website/common/locales/en/content.json b/website/common/locales/en/content.json
index 5634b01842..2955bea77b 100644
--- a/website/common/locales/en/content.json
+++ b/website/common/locales/en/content.json
@@ -227,6 +227,10 @@
"questEggPterodactylMountText": "Pterodactyl",
"questEggPterodactylAdjective": "trusting",
+ "questEggBadgerText": "Badger",
+ "questEggBadgerMountText": "Badger",
+ "questEggBadgerAdjective": "bustling",
+
"eggNotes": "Find a hatching potion to pour on this egg, and it will hatch into <%= eggAdjective(locale) %> <%= eggText(locale) %>.",
"hatchingPotionBase": "Base",
diff --git a/website/common/locales/en/questsContent.json b/website/common/locales/en/questsContent.json
index 58353b5f11..8d99996e68 100644
--- a/website/common/locales/en/questsContent.json
+++ b/website/common/locales/en/questsContent.json
@@ -647,5 +647,12 @@
"questPterodactylCompletion": "With one last screech the Pterror-dactyl plummets over the side of the cliff. You run forward to watch it soar away over the distant steppes. \"Phew, I'm glad that's over,\" you say. \"Me too,\" replies @GeraldThePixel. \"But look! It's left some eggs behind for us.\" @Edge passes you three eggs, and you vow to raise them in tranquility, surrounded by positive Habits and blue Dailies.",
"questPterodactylBoss": "Pterror-dactyl",
"questPterodactylDropPterodactylEgg": "Pterodactyl (Egg)",
- "questPterodactylUnlockText": "Unlocks purchasable Pterodactyl eggs in the Market"
+ "questPterodactylUnlockText": "Unlocks purchasable Pterodactyl eggs in the Market",
+
+ "questBadgerText": "Stop Badgering Me!",
+ "questBadgerNotes": "Ah, winter in the Taskwoods. The softly falling snow, the branches sparkling with frost, the Flourishing Fairies… still not snoozing?
“Why are they still awake?” cries @LilithofAlfheim. “If they don't hibernate soon, they'll never have the energy for planting season.”
As you and @Willow the Witty hurry to investigate, a furry head pops up from the ground. Before you can yell, “It’s the Badgering Bother!” it’s back in its burrow—but not before snatching up the Fairies' “Hibernate” To-Dos and dropping a giant list of pesky tasks in their place!
“No wonder the fairies aren't resting, if they're constantly being badgered like that!” @plumilla says. Can you chase off this beast and save the Taskwood’s harvest this year?",
+ "questBadgerCompletion": "You finally drive away the the Badgering Bother and hurry into its burrow. At the end of a tunnel, you find its hoard of the faeries’ “Hibernate” To-Dos. The den is otherwise abandoned, except for three eggs that look ready to hatch.",
+ "questBadgerBoss": "The Badgering Bother",
+ "questBadgerDropBadgerEgg": "Badger (Egg)",
+ "questBadgerUnlockText": "Unlocks purchasable Badger eggs in the Market"
}
diff --git a/website/common/script/content/eggs.js b/website/common/script/content/eggs.js
index 1879bf0659..163b248115 100644
--- a/website/common/script/content/eggs.js
+++ b/website/common/script/content/eggs.js
@@ -344,6 +344,12 @@ let quests = {
adjective: t('questEggPterodactylAdjective'),
canBuy: hasQuestAchievementFunction('pterodactyl'),
},
+ Badger: {
+ text: t('questEggBadgerText'),
+ mountText: t('questEggBadgerMountText'),
+ adjective: t('questEggBadgerAdjective'),
+ canBuy: hasQuestAchievementFunction('badger'),
+ },
};
applyEggDefaults(drops, {
diff --git a/website/common/script/content/quests.js b/website/common/script/content/quests.js
index db2a677551..913bb96e5c 100644
--- a/website/common/script/content/quests.js
+++ b/website/common/script/content/quests.js
@@ -3067,6 +3067,38 @@ let quests = {
unlock: t('questPterodactylUnlockText'),
},
},
+ badger: {
+ text: t('questBadgerText'),
+ notes: t('questBadgerNotes'),
+ completion: t('questBadgerCompletion'),
+ value: 4,
+ category: 'pet',
+ boss: {
+ name: t('questBadgerBoss'),
+ hp: 600,
+ str: 1.5,
+ },
+ drop: {
+ items: [
+ {
+ type: 'eggs',
+ key: 'Badger',
+ text: t('questBadgerDropBadgerEgg'),
+ }, {
+ type: 'eggs',
+ key: 'Badger',
+ text: t('questBadgerDropBadgerEgg'),
+ }, {
+ type: 'eggs',
+ key: 'Badger',
+ text: t('questBadgerDropBadgerEgg'),
+ },
+ ],
+ gp: 43,
+ exp: 350,
+ unlock: t('questBadgerUnlockText'),
+ },
+ },
};
each(quests, (v, key) => {
diff --git a/website/raw_sprites/spritesmith/quests/bosses/quest_badger.png b/website/raw_sprites/spritesmith/quests/bosses/quest_badger.png
new file mode 100644
index 0000000000..737a21cfb4
Binary files /dev/null and b/website/raw_sprites/spritesmith/quests/bosses/quest_badger.png differ
diff --git a/website/raw_sprites/spritesmith/quests/scrolls/inventory_quest_scroll_badger.png b/website/raw_sprites/spritesmith/quests/scrolls/inventory_quest_scroll_badger.png
new file mode 100644
index 0000000000..8a66e5a68c
Binary files /dev/null and b/website/raw_sprites/spritesmith/quests/scrolls/inventory_quest_scroll_badger.png differ
diff --git a/website/raw_sprites/spritesmith/stable/eggs/Pet_Egg_Badger.png b/website/raw_sprites/spritesmith/stable/eggs/Pet_Egg_Badger.png
new file mode 100644
index 0000000000..776afa2717
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/eggs/Pet_Egg_Badger.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Base.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Base.png
new file mode 100644
index 0000000000..aa914335f6
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Base.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-CottonCandyBlue.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-CottonCandyBlue.png
new file mode 100644
index 0000000000..7d33b9faa8
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-CottonCandyBlue.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-CottonCandyPink.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-CottonCandyPink.png
new file mode 100644
index 0000000000..31e8e3acdb
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-CottonCandyPink.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Desert.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Desert.png
new file mode 100644
index 0000000000..4e46d1dd0a
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Desert.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Golden.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Golden.png
new file mode 100644
index 0000000000..be95560cdb
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Golden.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Red.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Red.png
new file mode 100644
index 0000000000..3f9fe52dbf
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Red.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Shade.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Shade.png
new file mode 100644
index 0000000000..c1b2ef1cb7
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Shade.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Skeleton.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Skeleton.png
new file mode 100644
index 0000000000..2f812db9f6
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Skeleton.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-White.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-White.png
new file mode 100644
index 0000000000..0bf4ec3e8e
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-White.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Zombie.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Zombie.png
new file mode 100644
index 0000000000..fa2c696de9
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Badger-Zombie.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Base.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Base.png
new file mode 100644
index 0000000000..42cf664d77
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Base.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-CottonCandyBlue.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-CottonCandyBlue.png
new file mode 100644
index 0000000000..a0ae7bd1fe
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-CottonCandyBlue.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-CottonCandyPink.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-CottonCandyPink.png
new file mode 100644
index 0000000000..d4484612c2
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-CottonCandyPink.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Desert.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Desert.png
new file mode 100644
index 0000000000..c589f89b9e
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Desert.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Golden.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Golden.png
new file mode 100644
index 0000000000..eb8926aba8
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Golden.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Red.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Red.png
new file mode 100644
index 0000000000..d898f7482f
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Red.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Shade.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Shade.png
new file mode 100644
index 0000000000..ea1913fdbc
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Shade.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Skeleton.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Skeleton.png
new file mode 100644
index 0000000000..7b33c0da9e
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Skeleton.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-White.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-White.png
new file mode 100644
index 0000000000..74c193aca6
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-White.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Zombie.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Zombie.png
new file mode 100644
index 0000000000..6e18452014
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Badger-Zombie.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Base.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Base.png
new file mode 100644
index 0000000000..00628f94cb
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Base.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-CottonCandyBlue.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-CottonCandyBlue.png
new file mode 100644
index 0000000000..0b70381ac7
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-CottonCandyBlue.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-CottonCandyPink.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-CottonCandyPink.png
new file mode 100644
index 0000000000..92838c0504
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-CottonCandyPink.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Desert.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Desert.png
new file mode 100644
index 0000000000..83c68ec347
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Desert.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Golden.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Golden.png
new file mode 100644
index 0000000000..e4d9305da3
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Golden.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Red.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Red.png
new file mode 100644
index 0000000000..c22cf81ece
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Red.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Shade.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Shade.png
new file mode 100644
index 0000000000..7515c3ea6e
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Shade.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Skeleton.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Skeleton.png
new file mode 100644
index 0000000000..521f07ac93
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Skeleton.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-White.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-White.png
new file mode 100644
index 0000000000..53dd33d57c
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-White.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Zombie.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Zombie.png
new file mode 100644
index 0000000000..d2279d2bca
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Badger-Zombie.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Base.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Base.png
new file mode 100644
index 0000000000..fb344ec3c1
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Base.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-CottonCandyBlue.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-CottonCandyBlue.png
new file mode 100644
index 0000000000..be5e0048ef
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-CottonCandyBlue.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-CottonCandyPink.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-CottonCandyPink.png
new file mode 100644
index 0000000000..0c4d447c4e
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-CottonCandyPink.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Desert.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Desert.png
new file mode 100644
index 0000000000..b3e14142e8
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Desert.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Golden.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Golden.png
new file mode 100644
index 0000000000..af49c0c4db
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Golden.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Red.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Red.png
new file mode 100644
index 0000000000..40bb3cebca
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Red.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Shade.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Shade.png
new file mode 100644
index 0000000000..9d885d151f
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Shade.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Skeleton.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Skeleton.png
new file mode 100644
index 0000000000..fb98d65005
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Skeleton.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-White.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-White.png
new file mode 100644
index 0000000000..92d48a554d
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-White.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Zombie.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Zombie.png
new file mode 100644
index 0000000000..9ee3672fa1
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Badger-Zombie.png differ
diff --git a/website/raw_sprites/spritesmith_large/scene_tavern.png b/website/raw_sprites/spritesmith_large/scene_tavern.png
new file mode 100644
index 0000000000..63078b9e28
Binary files /dev/null and b/website/raw_sprites/spritesmith_large/scene_tavern.png differ
diff --git a/website/server/controllers/api-v3/news.js b/website/server/controllers/api-v3/news.js
index 3364389795..8c212c7ed2 100644
--- a/website/server/controllers/api-v3/news.js
+++ b/website/server/controllers/api-v3/news.js
@@ -3,7 +3,7 @@ import { authWithHeaders } from '../../middlewares/auth';
let api = {};
// @TODO export this const, cannot export it from here because only routes are exported from controllers
-const LAST_ANNOUNCEMENT_TITLE = 'NEW BACKGROUNDS AND ARMOIRE ITEMS, OFFICIAL CHALLENGES, AND FIXES';
+const LAST_ANNOUNCEMENT_TITLE = 'NEW PET QUEST AND USE CASE SPOTLIGHT';
const worldDmg = { // @TODO
bailey: false,
};
@@ -27,45 +27,32 @@ api.getNews = {
html: `
We’ve added three new backgrounds to the Background Shop! Now your avatar can dally in a Rose Garden, explore a Magical Museum, and play in Chessboard Land. Check them out under the User Icon > Backgrounds!
-Plus, there’s new gold-purchasable equipment in the Enchanted Armoire, including the King of Diamonds Set. Better work hard on your real-life tasks to earn all the pieces! Enjoy :)
-The Habitica team has launched a special official Challenge series hosted in the Official New Year's Resolution Guild. These Challenges are designed to help you build and maintain goals that are destined for success and then stick with them as the year progresses. For this month's Challenge, Hone your Weapons, we're focusing on making sure the goals you've set this year are specific and achievable! It has a 15 Gem prize, which will be awarded to five lucky winners on March 1st.
+Winter has come to the Taskwoods, but the Fairies aren't hibernating yet because the Badgering Bother won't stop pestering them! Get the latest pet quest, Stop Badgering Me!, from the Quest Shop, and earn some bustling badger pets by completing your real-life tasks.
+Congratulations to the winners of January's Challenge: upsidedawn, Cristalias, feistyturtle, Yachiie, and Stijn Verwijmeren!
The next Take This Challenge has also launched, Cast of Characters!, with a focus on imagining one's positive and negative feelings as characters in a story. Be sure to check it out to earn additional pieces of the Take This armor set!
-Take This is a nonprofit that seeks to inform the gamer community about mental health issues, to provide education about mental disorders and mental illness prevention, and to reduce the stigma of mental illness.
+This month's Use Case Spotlight is about Interpersonal Relationships! 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 be looking for advice to help nurture your relationships.
Congratulations to the winners of the last Take This Challenge, 'Check Your HP!': grand prize winner PoNyasha, and runners-up -ᏲᎾ-, Kat Thompson, 𝒮𝔲𝔠𝔥𝔢𝔯𝔪𝔞𝔲𝔰 🐭, Cal_Fizz, and redfeather! Plus, all participants in that Challenge have received a piece of the Take This item set if they hadn't completed the set already. Armor pieces are located in your Rewards column. Enjoy!
-We've made a number of fixes, most prominently a bunch of fixes for notifications so that they direct you to the correct place when clicked and disappear after that!
-We've also fixed the issue where some Habiticans were seeing old announcements from Bailey rather than the latest ones, and we've added a way for Group Plan managers to note when an assigned task needs further work from the assignee.
-We hope these fixes improve your Habitica experience!
-Plus, we're collecting user submissions for the next spotlight! How do you use Habitica for Spring Cleaning? 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!
+