diff --git a/locales/en/content.json b/locales/en/content.json
index 36bba564dd..847961b2c2 100644
--- a/locales/en/content.json
+++ b/locales/en/content.json
@@ -66,6 +66,9 @@
"questEggOwlText": "Owl",
"questEggOwlAdjective": "wise",
+ "questEggPenguinText": "Penguin",
+ "questEggPenguinAdjective": "dapper",
+
"eggNotes": "Find a hatching potion to pour on this egg, and it will hatch into a <%= eggAdjective() %> <%= eggText() %>.",
"hatchingPotionBase": "Base",
diff --git a/locales/en/questsContent.json b/locales/en/questsContent.json
index 195d97bb15..9edba5d32d 100644
--- a/locales/en/questsContent.json
+++ b/locales/en/questsContent.json
@@ -165,8 +165,8 @@
"questOwlDropOwlEgg": "Owl (Egg)",
"questPenguinText": "The Fowl Frost",
- "questPenguinNotes": "Although it's a hot summer day in the southernmost tip of Habitica, an unnatural chill has fallen upon Lively Lake. Strong, frigid winds rush around as the shore begins to freeze over. Ice spikes jut up from the ground, pushing grass and dirt away. @Melynnrose and @Breadstrings run up to you.\n\n\"Help!\" says @Melynnrose. \"We brought a giant penguin in to freeze the lake so we could all go ice skating, but we ran out of fish to feed him!\"\n\n\"He got angry and is using his freeze breath on everything he sees!\" says @Breadstrings. \"Please, you have to subdue him before all of us are covered in ice!\" Looks like you need this penguin to... cool down.",
- "questPenguinCompletion": "Upon the penguin's defeat, the ice melts away. The giant penguin settles down in the sunshine, slurping up an extra bucket of fish you found. He skates off across the lake, blowing gently downwards to create smooth, sparkling ice. What an odd bird! \"It appears he left behind a few eggs, as well,\" says @Painter de Cluster. \n\n@Rattify laughs. \"Maybe these penguins will be a little more... chill?\"",
+ "questPenguinNotes": "Although it's a hot summer day in the southernmost tip of Habitica, an unnatural chill has fallen upon Lively Lake. Strong, frigid winds rush around as the shore begins to freeze over. Ice spikes jut up from the ground, pushing grass and dirt away. @Melynnrose and @Breadstrings run up to you.
\"Help!\" says @Melynnrose. \"We brought a giant penguin in to freeze the lake so we could all go ice skating, but we ran out of fish to feed him!\"
\"He got angry and is using his freeze breath on everything he sees!\" says @Breadstrings. \"Please, you have to subdue him before all of us are covered in ice!\" Looks like you need this penguin to... cool down.",
+ "questPenguinCompletion": "Upon the penguin's defeat, the ice melts away. The giant penguin settles down in the sunshine, slurping up an extra bucket of fish you found. He skates off across the lake, blowing gently downwards to create smooth, sparkling ice. What an odd bird! \"It appears he left behind a few eggs, as well,\" says @Painter de Cluster.
@Rattify laughs. \"Maybe these penguins will be a little more... chill?\"",
"questPenguinBoss": "Frost Penguin",
"questPenguinDropPenguinEgg": "Penguin (Egg)"
}
diff --git a/script/content.coffee b/script/content.coffee
index e9e7156ea6..6e3beff2ca 100644
--- a/script/content.coffee
+++ b/script/content.coffee
@@ -717,6 +717,7 @@ api.questEggs =
Rooster: text: t('questEggRoosterText'), adjective: t('questEggRoosterAdjective'), canBuy: false
Spider: text: t('questEggSpiderText'), adjective: t('questEggSpiderAdjective'), canBuy: false
Owl: text: t('questEggOwlText'), adjective: t('questEggOwlAdjective'), canBuy: false
+ Penguin: text: t('questEggPenguinText'), adjective: t('questEggPenguinAdjective'), canBuy: false
_.each api.questEggs, (egg,key) ->
_.defaults egg,