diff --git a/website/common/locales/en/content.json b/website/common/locales/en/content.json index 547503e8ea..9a47834d57 100644 --- a/website/common/locales/en/content.json +++ b/website/common/locales/en/content.json @@ -45,8 +45,6 @@ "dropEggDragonText": "Dragon", "dropEggDragonAdjective": "a mighty", - "dropEggCactusText": "Cactus", - "dropEggBearCubText": "Bear Cub", "dropEggBearCubMountText": "Bear", "dropEggBearCubAdjective": "a brave", @@ -243,6 +241,10 @@ "questEggKangarooMountText": "Kangaroo", "questEggKangarooAdjective": "a keen", + "questEggAlligatorText": "Alligator", + "questEggAlligatorMountText": "Alligator", + "questEggAlligatorAdjective": "a cunning", + "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 43b177ab8f..ed50cb44c6 100644 --- a/website/common/locales/en/questsContent.json +++ b/website/common/locales/en/questsContent.json @@ -717,5 +717,12 @@ "questKangarooUnlockText": "Unlocks purchasable Kangaroo eggs in the Market", "forestFriendsText": "Forest Friends Quest Bundle", - "forestFriendsNotes": "Contains 'The Spirit of Spring', 'The Hedgebeast', and 'The Tangle Tree'. Available until September 30." + "forestFriendsNotes": "Contains 'The Spirit of Spring', 'The Hedgebeast', and 'The Tangle Tree'. Available until September 30.", + + "questAlligatorText": "The Insta-Gator", + "questAlligatorNotes": "“Crikey!” exclaims @gully. “An Insta-Gator in its natural habitat! Careful, it distracts its prey with things that seem urgent THIS INSTANT, and it feeds on the unchecked Dailies that result.” You fall silent to avoid attracting its attention, but to no avail. The Insta-Gator spots you and charges! Distracting voices rise up from Swamps of Stagnation, grabbing for your attention: “Read this post! See this photo! Pay attention to me THIS INSTANT!” You scramble to mount a counterattack, completing your Dailies and bolstering your good Habits to fight off the dreaded Insta-Gator.", + "questAlligatorCompletion": "With your attention focused on what’s important and not the Insta-Gator’s distractions, the Insta-Gator flees. Victory! “Are those eggs? They look like gator eggs to me,” asks @mfonda. “If we care for them correctly, they’ll be loyal pets or faithful steeds,” answers @UncommonCriminal, handing you three to care for. Let’s hope so, or else the Insta-Gator might make a return…", + "questAlligatorBoss": "Insta-Gator", + "questAlligatorDropAlligatorEgg": "Alligator (Egg)", + "questAlligatorUnlockText": "Unlocks purchasable Alligator eggs in the Market" } diff --git a/website/common/script/content/eggs.js b/website/common/script/content/eggs.js index 75d66ebaae..cdec4f9875 100644 --- a/website/common/script/content/eggs.js +++ b/website/common/script/content/eggs.js @@ -368,6 +368,12 @@ let quests = { adjective: t('questEggKangarooAdjective'), canBuy: hasQuestAchievementFunction('kangaroo'), }, + Alligator: { + text: t('questEggAlligatorText'), + mountText: t('questEggAlligatorMountText'), + adjective: t('questEggAlligatorAdjective'), + canBuy: hasQuestAchievementFunction('alligator'), + }, }; applyEggDefaults(drops, { diff --git a/website/common/script/content/quests.js b/website/common/script/content/quests.js index 399f0a7f4e..2ca850a74b 100644 --- a/website/common/script/content/quests.js +++ b/website/common/script/content/quests.js @@ -3289,6 +3289,38 @@ let quests = { unlock: t('questKangarooUnlockText'), }, }, + alligator: { + text: t('questAlligatorText'), + notes: t('questAlligatorNotes'), + completion: t('questAlligatorCompletion'), + value: 4, + category: 'pet', + boss: { + name: t('questAlligatorBoss'), + hp: 1100, + str: 2.5, + }, + drop: { + items: [ + { + type: 'eggs', + key: 'Alligator', + text: t('questAlligatorDropAlligatorEgg'), + }, { + type: 'eggs', + key: 'Alligator', + text: t('questAlligatorDropAlligatorEgg'), + }, { + type: 'eggs', + key: 'Alligator', + text: t('questAlligatorDropAlligatorEgg'), + }, + ], + gp: 73, + exp: 725, + unlock: t('questAlligatorUnlockText'), + }, + }, }; each(quests, (v, key) => { diff --git a/website/common/script/content/shop-featuredItems.js b/website/common/script/content/shop-featuredItems.js index 12bf7348b3..27028660fe 100644 --- a/website/common/script/content/shop-featuredItems.js +++ b/website/common/script/content/shop-featuredItems.js @@ -22,12 +22,12 @@ const featuredItems = { ], quests: [ { - type: 'bundles', - path: 'bundles.forestFriends', + type: 'quests', + path: 'quests.alligator', }, { type: 'quests', - path: 'quests.dilatoryDistress1', + path: 'quests.taskwoodsTerror1', }, { type: 'quests', diff --git a/website/common/script/libs/shops-seasonal.config.js b/website/common/script/libs/shops-seasonal.config.js index 848956c2ac..65a3bf448b 100644 --- a/website/common/script/libs/shops-seasonal.config.js +++ b/website/common/script/libs/shops-seasonal.config.js @@ -19,6 +19,7 @@ module.exports = { }, availableSpells: [ + 'spookySparkles', ], availableQuests: [ diff --git a/website/raw_sprites/spritesmith/quests/bosses/quest_alligator.png b/website/raw_sprites/spritesmith/quests/bosses/quest_alligator.png new file mode 100644 index 0000000000..ad0766592b Binary files /dev/null and b/website/raw_sprites/spritesmith/quests/bosses/quest_alligator.png differ diff --git a/website/raw_sprites/spritesmith/quests/scrolls/inventory_quest_scroll_alligator.png b/website/raw_sprites/spritesmith/quests/scrolls/inventory_quest_scroll_alligator.png new file mode 100644 index 0000000000..04ab146e2a Binary files /dev/null and b/website/raw_sprites/spritesmith/quests/scrolls/inventory_quest_scroll_alligator.png differ diff --git a/website/raw_sprites/spritesmith/stable/eggs/Pet_Egg_Alligator.png b/website/raw_sprites/spritesmith/stable/eggs/Pet_Egg_Alligator.png new file mode 100644 index 0000000000..21753999dd Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/eggs/Pet_Egg_Alligator.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Base.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Base.png new file mode 100644 index 0000000000..e78edf6764 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Base.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-CottonCandyBlue.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-CottonCandyBlue.png new file mode 100644 index 0000000000..886b70f0fe Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-CottonCandyBlue.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-CottonCandyPink.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-CottonCandyPink.png new file mode 100644 index 0000000000..7b74eb9103 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-CottonCandyPink.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Desert.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Desert.png new file mode 100644 index 0000000000..576dcc7cba Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Desert.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Golden.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Golden.png new file mode 100644 index 0000000000..77f8b82049 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Golden.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Red.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Red.png new file mode 100644 index 0000000000..c9fca956a4 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Red.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Shade.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Shade.png new file mode 100644 index 0000000000..6d65c3b7f2 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Shade.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Skeleton.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Skeleton.png new file mode 100644 index 0000000000..54f4f46278 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Skeleton.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-White.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-White.png new file mode 100644 index 0000000000..35e01b937d Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-White.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Zombie.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Zombie.png new file mode 100644 index 0000000000..8aa41493d1 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Alligator-Zombie.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Base.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Base.png new file mode 100644 index 0000000000..3513c4f386 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Base.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-CottonCandyBlue.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-CottonCandyBlue.png new file mode 100644 index 0000000000..79e9565498 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-CottonCandyBlue.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-CottonCandyPink.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-CottonCandyPink.png new file mode 100644 index 0000000000..5f65c68211 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-CottonCandyPink.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Desert.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Desert.png new file mode 100644 index 0000000000..b9ea35a081 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Desert.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Golden.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Golden.png new file mode 100644 index 0000000000..b1dc34dfdc Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Golden.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Red.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Red.png new file mode 100644 index 0000000000..0e85b95f9e Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Red.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Shade.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Shade.png new file mode 100644 index 0000000000..ff84ae4dd3 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Shade.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Skeleton.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Skeleton.png new file mode 100644 index 0000000000..cef2d6f450 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Skeleton.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-White.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-White.png new file mode 100644 index 0000000000..e989816bad Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-White.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Zombie.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Zombie.png new file mode 100644 index 0000000000..04ab8a6eda Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Alligator-Zombie.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Base.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Base.png new file mode 100644 index 0000000000..317c9d48fb Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Base.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-CottonCandyBlue.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-CottonCandyBlue.png new file mode 100644 index 0000000000..f0e44c522a Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-CottonCandyBlue.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-CottonCandyPink.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-CottonCandyPink.png new file mode 100644 index 0000000000..7fd81c5baf Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-CottonCandyPink.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Desert.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Desert.png new file mode 100644 index 0000000000..4c06d0457a Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Desert.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Golden.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Golden.png new file mode 100644 index 0000000000..4ddb2167c3 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Golden.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Red.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Red.png new file mode 100644 index 0000000000..b0e775d8f8 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Red.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Shade.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Shade.png new file mode 100644 index 0000000000..32e03eb45a Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Shade.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Skeleton.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Skeleton.png new file mode 100644 index 0000000000..44dfeccf92 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Skeleton.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-White.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-White.png new file mode 100644 index 0000000000..6d0f6ca39c Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-White.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Zombie.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Zombie.png new file mode 100644 index 0000000000..4a90eb198a Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Alligator-Zombie.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Base.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Base.png new file mode 100644 index 0000000000..e875943c39 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Base.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-CottonCandyBlue.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-CottonCandyBlue.png new file mode 100644 index 0000000000..70197166da Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-CottonCandyBlue.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-CottonCandyPink.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-CottonCandyPink.png new file mode 100644 index 0000000000..f27bdcda6c Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-CottonCandyPink.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Desert.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Desert.png new file mode 100644 index 0000000000..6534b15950 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Desert.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Golden.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Golden.png new file mode 100644 index 0000000000..fe3e32c8f0 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Golden.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Red.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Red.png new file mode 100644 index 0000000000..99364c7e60 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Red.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Shade.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Shade.png new file mode 100644 index 0000000000..52e8fa5625 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Shade.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Skeleton.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Skeleton.png new file mode 100644 index 0000000000..f52c514b12 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Skeleton.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-White.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-White.png new file mode 100644 index 0000000000..ae928786d1 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-White.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Zombie.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Zombie.png new file mode 100644 index 0000000000..e14052082f Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Alligator-Zombie.png differ diff --git a/website/raw_sprites/spritesmith_large/promo_alligator.png b/website/raw_sprites/spritesmith_large/promo_alligator.png new file mode 100644 index 0000000000..8cd98e107b Binary files /dev/null and b/website/raw_sprites/spritesmith_large/promo_alligator.png differ diff --git a/website/raw_sprites/spritesmith_large/promo_kangaroo.png b/website/raw_sprites/spritesmith_large/promo_kangaroo.png deleted file mode 100644 index 1d3dcb6b0f..0000000000 Binary files a/website/raw_sprites/spritesmith_large/promo_kangaroo.png and /dev/null differ diff --git a/website/raw_sprites/spritesmith_large/promo_spooky_sparkles.png b/website/raw_sprites/spritesmith_large/promo_spooky_sparkles.png new file mode 100644 index 0000000000..514abddd90 Binary files /dev/null and b/website/raw_sprites/spritesmith_large/promo_spooky_sparkles.png differ diff --git a/website/server/controllers/api-v3/news.js b/website/server/controllers/api-v3/news.js index 826976fad5..e18fe9dc69 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 = 'OCTOBER BACKGROUNDS AND ARMOIRE ITEMS!'; +const LAST_ANNOUNCEMENT_TITLE = 'ALLIGATOR PET QUEST AND SPOOKY SPARKLES!'; const worldDmg = { // @TODO bailey: false, }; @@ -30,14 +30,24 @@ api.getNews = {

${res.t('newStuff')}

-

10/04/2018 - ${LAST_ANNOUNCEMENT_TITLE}

+

10/09/2018 - ${LAST_ANNOUNCEMENT_TITLE}


-

We’ve added three new backgrounds to the Background Shop! Now your avatar can creep through a spooky Dungeon, dare to approach a Creepy Castle and bask in the glow of a firefly-filled Bayou. Check them out under User Icon > Backgrounds!

-

Plus, there’s new Gold-purchasable equipment in the Enchanted Armoire, including the Ace of Spades Set. Better work hard on your real-life tasks to earn all the pieces! Enjoy :)

-
by AnnDeLune, gully, Vampitch, GeraldThePixel, NekoAtsumeLARPer, Shred, and SabreCat
-
+

New Pet Quest: The Insta-Gator!

+

Drop what you're doing, right now, and head to the Quest Shop!* Get the latest pet quest, The Insta-Gator, and earn some cunning alligator pets by completing your real-life tasks.

+
Art by gully, mfonda, UncommonCriminal, tabbytoes, and Willow the Witty
+
Writing by Mike.Antonacci
+
+
+
+

Spooky Sparkles in the Seasonal Shop

+

There's a new Gold-purchasable item in the Seasonal Shop: Spooky Sparkles! Buy some and then cast it on your friends. I wonder what it will do?

+

If you have Spooky Sparkles cast on you, you will receive the "Alarming Friends" badge! Don't worry, any mysterious effects will wear off the next day.... or you can cancel them early by buying an Opaque Potion!

+

While you're at it, be sure to check out all the other items in the Seasonal Shop! There are lots of equipment items from the previous Fall Festivals. The Seasonal Shop will only be open until October 31st, so stock up now.

+
+
+
`, });