diff --git a/website/client/app.vue b/website/client/app.vue
index a7e3a424d5..bc0cf71deb 100644
--- a/website/client/app.vue
+++ b/website/client/app.vue
@@ -656,5 +656,6 @@ export default {
+
diff --git a/website/common/locales/en/achievements.json b/website/common/locales/en/achievements.json
index f84b48d46b..16886ce259 100644
--- a/website/common/locales/en/achievements.json
+++ b/website/common/locales/en/achievements.json
@@ -7,7 +7,7 @@
"achievementLostMasterclasser": "Quest Completionist: Masterclasser Series",
"achievementLostMasterclasserText": "Completed all sixteen quests in the Masterclasser Quest Series and solved the mystery of the Lost Masterclasser!",
"achievementMindOverMatter": "Mind Over Matter",
- "achievementMindOverMatterText": "Has completed Rock, Egg, Slime, and Yarn pet quests.",
+ "achievementMindOverMatterText": "Has completed Rock, Slime, and Yarn pet quests.",
"achievementJustAddWater": "Just Add Water",
"achievementJustAddWaterText": "Has completed Octopus, Seahorse, Cuttlefish, Whale, Turtle, Nudibranch, Sea Serpent, and Dolphin pet quests.",
"achievementBackToBasics": "Back to Basics",
diff --git a/website/common/locales/en/content.json b/website/common/locales/en/content.json
index 70eaa42b4e..beb058181e 100644
--- a/website/common/locales/en/content.json
+++ b/website/common/locales/en/content.json
@@ -249,6 +249,10 @@
"questEggVelociraptorMountText": "Velociraptor",
"questEggVelociraptorAdjective": "a clever",
+ "questEggDolphinText": "Dolphin",
+ "questEggDolphinMountText": "Dolphin",
+ "questEggDolphinAdjective": "a chipper",
+
"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 84b2f9dbbd..f5846c0e9f 100644
--- a/website/common/locales/en/questsContent.json
+++ b/website/common/locales/en/questsContent.json
@@ -747,5 +747,12 @@
"questBronzeCompletion": "“Well met, warrior!” says the beetle as she settles to the ground. Is she smiling? It's hard to tell from those mandibles. “You've truly earned these potions!”
“Oh wow, we’ve never gotten a reward like this for winning a battle before!” says @UncommonCriminal, turning a shimmering bottle in their hand. “Let's go hatch our new pets!”",
"questBronzeBoss": "Brazen Beetle",
"questBronzeDropBronzePotion": "Bronze Hatching Potion",
- "questBronzeUnlockText": "Unlocks purchasable Bronze hatching potions in the Market"
+ "questBronzeUnlockText": "Unlocks purchasable Bronze hatching potions in the Market",
+
+ "questDolphinText": "The Dolphin of Doubt",
+ "questDolphinNotes": "You walk upon the shores of Inkomplete Bay, pondering the daunting work ahead of you. A splash in the water catches your eye. A magnificent dolphin arcs over the waves. Sunlight glimmers off its fins and tail. But wait...that’s not sunlight, and the dolphin doesn’t dip back into the sea. It fixes its gaze on @khdarkwolf.
“I’ll never finish all these Dailies,” said @khdarkwolf.
“I’m not good enough to reach my goals,” said @confusedcicada as the dolphin turned its glare on them.
“Why did I even bother trying?” asked @mewrose, withering under the stare of the beast.
Its eyes meet yours, and feel your mind begin to sink under the rising tide of doubt. You steel yourself; someone has to defeat this creature, and it’s going to be you!",
+ "questDolphinBoss": "Dolphin of Doubt",
+ "questDolphinCompletion": "Your battle of wills with the dolphin has left you tired but victorious. With your determination and encouragement, @mewrose, @khdarkwolf, and @confusedcicada pick themselves up and shake off the dolphin’s insidious telepathy. The four of you shield yourselves with a sense of accomplishment in your consistent Dailies, strong Habits, and completed To-Dos until it closes its glowing eyes in silent acknowledgment of your successes. With that, it tumbles back into the bay. As you trade high-fives and congratulations, you notice three eggs wash ashore.
“Hm, I wonder what we can do with those,” @khdarkwolf muses.",
+ "questDolphinDropDolphinEgg": "Dolphin (Egg)",
+ "questDolphinUnlockText": "Unlocks purchasable Dolphin eggs in the Market"
}
diff --git a/website/common/script/content/constants.js b/website/common/script/content/constants.js
index f9fa398b81..45ecd24a12 100644
--- a/website/common/script/content/constants.js
+++ b/website/common/script/content/constants.js
@@ -233,7 +233,6 @@ export const QUEST_SERIES_ACHIEVEMENTS = {
'lostMasterclasser4',
],
mindOverMatter: [
- 'egg',
'rock',
'slime',
'yarn',
diff --git a/website/common/script/content/eggs.js b/website/common/script/content/eggs.js
index 6e8313745f..9950223fae 100644
--- a/website/common/script/content/eggs.js
+++ b/website/common/script/content/eggs.js
@@ -380,6 +380,12 @@ let quests = {
adjective: t('questEggVelociraptorAdjective'),
canBuy: hasQuestAchievementFunction('velociraptor'),
},
+ Dolphin: {
+ text: t('questEggDolphinText'),
+ mountText: t('questEggDolphinMountText'),
+ adjective: t('questEggDolphinAdjective'),
+ canBuy: hasQuestAchievementFunction('dolphin'),
+ },
};
applyEggDefaults(drops, {
diff --git a/website/common/script/content/index.js b/website/common/script/content/index.js
index 87981b5abd..957f37e16f 100644
--- a/website/common/script/content/index.js
+++ b/website/common/script/content/index.js
@@ -211,7 +211,7 @@ api.bundles = {
'yarn',
],
canBuy () {
- return moment().isBetween('2018-11-15', '2018-12-04');
+ return moment().isBetween('2019-06-10', '2019-07-02');
},
type: 'quests',
value: 7,
diff --git a/website/common/script/content/quests.js b/website/common/script/content/quests.js
index ffa6c8df3a..526b8db7c9 100644
--- a/website/common/script/content/quests.js
+++ b/website/common/script/content/quests.js
@@ -3385,6 +3385,38 @@ let quests = {
unlock: t('questBronzeUnlockText'),
},
},
+ dolphin: {
+ text: t('questDolphinText'),
+ notes: t('questDolphinNotes'),
+ completion: t('questDolphinCompletion'),
+ value: 4,
+ category: 'pet',
+ boss: {
+ name: t('questDolphinBoss'),
+ hp: 300,
+ str: 1.25,
+ },
+ drop: {
+ items: [
+ {
+ type: 'eggs',
+ key: 'Dolphin',
+ text: t('questDolphinDropDolphinEgg'),
+ }, {
+ type: 'eggs',
+ key: 'Dolphin',
+ text: t('questDolphinDropDolphinEgg'),
+ }, {
+ type: 'eggs',
+ key: 'Dolphin',
+ text: t('questDolphinDropDolphinEgg'),
+ },
+ ],
+ gp: 63,
+ exp: 575,
+ unlock: t('questDolphinUnlockText'),
+ },
+ },
};
each(quests, (v, key) => {
diff --git a/website/common/script/content/shop-featuredItems.js b/website/common/script/content/shop-featuredItems.js
index b055fc20c8..701ac10de2 100644
--- a/website/common/script/content/shop-featuredItems.js
+++ b/website/common/script/content/shop-featuredItems.js
@@ -9,11 +9,11 @@ const featuredItems = {
},
{
type: 'eggs',
- path: 'eggs.Dragon',
+ path: 'eggs.Fox',
},
{
type: 'hatchingPotions',
- path: 'hatchingPotions.Red',
+ path: 'hatchingPotions.CottonCandyBlue',
},
{
type: 'card',
@@ -27,11 +27,11 @@ const featuredItems = {
},
{
type: 'quests',
- path: 'quests.rat',
+ path: 'quests.yarn',
},
{
type: 'quests',
- path: 'quests.horse',
+ path: 'quests.dolphin',
},
],
seasonal: 'spring2018Healer',
diff --git a/website/raw_sprites/spritesmith/quests/bosses/quest_dolphin.png b/website/raw_sprites/spritesmith/quests/bosses/quest_dolphin.png
new file mode 100644
index 0000000000..73cc00bc09
Binary files /dev/null and b/website/raw_sprites/spritesmith/quests/bosses/quest_dolphin.png differ
diff --git a/website/raw_sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dolphin.png b/website/raw_sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dolphin.png
new file mode 100644
index 0000000000..9be90a642a
Binary files /dev/null and b/website/raw_sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dolphin.png differ
diff --git a/website/raw_sprites/spritesmith/stable/eggs/Pet_Egg_Dolphin.png b/website/raw_sprites/spritesmith/stable/eggs/Pet_Egg_Dolphin.png
new file mode 100644
index 0000000000..ee43d36c51
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/eggs/Pet_Egg_Dolphin.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Base.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Base.png
new file mode 100644
index 0000000000..7ec89e960a
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Base.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-CottonCandyBlue.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-CottonCandyBlue.png
new file mode 100644
index 0000000000..0ae99d029d
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-CottonCandyBlue.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-CottonCandyPink.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-CottonCandyPink.png
new file mode 100644
index 0000000000..3b649dc3ec
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-CottonCandyPink.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Desert.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Desert.png
new file mode 100644
index 0000000000..d42c041e1f
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Desert.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Golden.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Golden.png
new file mode 100644
index 0000000000..6da32e3557
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Golden.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Red.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Red.png
new file mode 100644
index 0000000000..29146d37ed
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Red.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Shade.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Shade.png
new file mode 100644
index 0000000000..6abd84cc6d
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Shade.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Skeleton.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Skeleton.png
new file mode 100644
index 0000000000..651e8a261c
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Skeleton.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-White.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-White.png
new file mode 100644
index 0000000000..5fe57c3a83
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-White.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Zombie.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Zombie.png
new file mode 100644
index 0000000000..b225054c32
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dolphin-Zombie.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Base.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Base.png
new file mode 100644
index 0000000000..3dfc12c1c9
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Base.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-CottonCandyBlue.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-CottonCandyBlue.png
new file mode 100644
index 0000000000..3d5cadba6c
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-CottonCandyBlue.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-CottonCandyPink.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-CottonCandyPink.png
new file mode 100644
index 0000000000..47403d7fca
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-CottonCandyPink.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Desert.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Desert.png
new file mode 100644
index 0000000000..6031fc2817
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Desert.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Golden.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Golden.png
new file mode 100644
index 0000000000..2ec1aebd67
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Golden.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Red.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Red.png
new file mode 100644
index 0000000000..8956dff44f
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Red.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Shade.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Shade.png
new file mode 100644
index 0000000000..1005702a5e
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Shade.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Skeleton.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Skeleton.png
new file mode 100644
index 0000000000..9d4c35d8d4
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Skeleton.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-White.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-White.png
new file mode 100644
index 0000000000..0356bb41ca
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-White.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Zombie.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Zombie.png
new file mode 100644
index 0000000000..7492ae793a
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dolphin-Zombie.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Base.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Base.png
new file mode 100644
index 0000000000..24dace9e98
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Base.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-CottonCandyBlue.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-CottonCandyBlue.png
new file mode 100644
index 0000000000..4666708747
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-CottonCandyBlue.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-CottonCandyPink.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-CottonCandyPink.png
new file mode 100644
index 0000000000..d545c37378
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-CottonCandyPink.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Desert.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Desert.png
new file mode 100644
index 0000000000..279128c014
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Desert.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Golden.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Golden.png
new file mode 100644
index 0000000000..30833deb59
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Golden.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Red.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Red.png
new file mode 100644
index 0000000000..63de7b9d2e
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Red.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Shade.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Shade.png
new file mode 100644
index 0000000000..de744550c9
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Shade.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Skeleton.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Skeleton.png
new file mode 100644
index 0000000000..dd01e377a0
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Skeleton.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-White.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-White.png
new file mode 100644
index 0000000000..80083fddf6
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-White.png differ
diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Zombie.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Zombie.png
new file mode 100644
index 0000000000..4bb68de62f
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dolphin-Zombie.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Base.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Base.png
new file mode 100644
index 0000000000..99e43eba75
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Base.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-CottonCandyBlue.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-CottonCandyBlue.png
new file mode 100644
index 0000000000..20dd477003
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-CottonCandyBlue.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-CottonCandyPink.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-CottonCandyPink.png
new file mode 100644
index 0000000000..434c84b7e7
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-CottonCandyPink.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Desert.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Desert.png
new file mode 100644
index 0000000000..cee34884ae
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Desert.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Golden.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Golden.png
new file mode 100644
index 0000000000..699563e569
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Golden.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Red.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Red.png
new file mode 100644
index 0000000000..a0b341fd34
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Red.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Shade.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Shade.png
new file mode 100644
index 0000000000..bd296e44f3
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Shade.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Skeleton.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Skeleton.png
new file mode 100644
index 0000000000..c812762248
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Skeleton.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-White.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-White.png
new file mode 100644
index 0000000000..70c140e340
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-White.png differ
diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Zombie.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Zombie.png
new file mode 100644
index 0000000000..c82f7d1907
Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Dolphin-Zombie.png differ
diff --git a/website/raw_sprites/spritesmith_large/promo_dolphin_quest.png b/website/raw_sprites/spritesmith_large/promo_dolphin_quest.png
new file mode 100644
index 0000000000..269b7ea156
Binary files /dev/null and b/website/raw_sprites/spritesmith_large/promo_dolphin_quest.png differ
diff --git a/website/raw_sprites/spritesmith_large/promo_feathered_friends_bundle.png b/website/raw_sprites/spritesmith_large/promo_feathered_friends_bundle.png
deleted file mode 100644
index cdce669e3d..0000000000
Binary files a/website/raw_sprites/spritesmith_large/promo_feathered_friends_bundle.png and /dev/null differ
diff --git a/website/raw_sprites/spritesmith_large/promo_oddballs_bundle.png b/website/raw_sprites/spritesmith_large/promo_oddballs_bundle.png
new file mode 100644
index 0000000000..b885970b52
Binary files /dev/null and b/website/raw_sprites/spritesmith_large/promo_oddballs_bundle.png differ