feat(content): Hippo Pet Quest

This commit is contained in:
SabreCat
2017-08-10 19:45:30 +00:00
parent 7ff4a72d77
commit 2e8da50b3e
49 changed files with 75 additions and 11 deletions
+4
View File
@@ -215,6 +215,10 @@
"questEggNudibranchMountText": "Nudibranch",
"questEggNudibranchAdjective": "a nifty",
"questEggHippoText": "Hippo",
"questEggHippoMountText": "Hippo",
"questEggHippoAdjective": "a happy",
"eggNotes": "Find a hatching potion to pour on this egg, and it will hatch into <%= eggAdjective(locale) %> <%= eggText(locale) %>.",
"hatchingPotionBase": "Base",
+8 -1
View File
@@ -566,5 +566,12 @@
"questNudibranchUnlockText": "Unlocks purchasable Nudibranch eggs in the Market",
"splashyPalsText": "Splashy Pals Quest Bundle",
"splashyPalsNotes": "Contains 'The Dilatory Derby', 'Guide the Turtle', and 'Wail of the Whale'. Available until July 31."
"splashyPalsNotes": "Contains 'The Dilatory Derby', 'Guide the Turtle', and 'Wail of the Whale'. Available until July 31.",
"questHippoText": "What a Hippo-Crite",
"questHippoNotes": "You and @awesomekitty collapse into the shade of a palm tree, exhausted. The sun beats down over the Sloensteadi Savannah, scorching the ground below. Its been a productive day so far, conquering your Dailies, and this oasis looks like a nice place to take a break and refresh. Stooping near the water to get a drink, you stumble back in shock as a massive hippopotamus rises. “Resting so soon? Dont be so lazy, get back to work.” You try and protest that youve been working hard and need a break, but the hippo isnt having any of it.<br><br>@khdarkwolf whispers to you, “Notice how its lounging around all day but has the nerve to call you lazy? Its the Hippo-Crite!”<br><br>Your friend @jumorales nods. “Lets show it what hard work looks like!”",
"questHippoCompletion": "The hippo bows in surrender. “I underestimated you. It seems you werent being lazy. My apologies. Truth be told, I may have been projecting a bit. Perhaps I should get some work done myself. Here, take these eggs as a sign of my gratitude.” Grabbing them, you settle down by the water, ready to relax at last.",
"questHippoBoss": "The Hippo-Crite",
"questHippoDropHippoEgg": "Hippo (Egg)",
"questHippoUnlockText": "Unlocks purchasable Hippo eggs in the Market"
}
+6
View File
@@ -326,6 +326,12 @@ let quests = {
adjective: t('questEggNudibranchAdjective'),
canBuy: hasQuestAchievementFunction('nudibranch'),
},
Hippo: {
text: t('questEggHippoText'),
mountText: t('questEggHippoMountText'),
adjective: t('questEggHippoAdjective'),
canBuy: hasQuestAchievementFunction('nudibranch'),
},
};
applyEggDefaults(drops, {
+32
View File
@@ -2720,6 +2720,38 @@ let quests = {
unlock: t('questNudibranchUnlockText'),
},
},
hippo: {
text: t('questHippoText'),
notes: t('questHippoNotes'),
completion: t('questHippoCompletion'),
value: 4,
category: 'pet',
boss: {
name: t('questHippoBoss'),
hp: 800,
str: 2,
},
drop: {
items: [
{
type: 'eggs',
key: 'Hippo',
text: t('questHippoDropHippoEgg'),
}, {
type: 'eggs',
key: 'Hippo',
text: t('questHippoDropHippoEgg'),
}, {
type: 'eggs',
key: 'Hippo',
text: t('questHippoDropHippoEgg'),
},
],
gp: 55,
exp: 500,
unlock: t('questHippoUnlockText'),
},
},
};
each(quests, (v, key) => {