feat(content): Hippo Pet Quest
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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. It’s 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? Don’t be so lazy, get back to work.” You try and protest that you’ve been working hard and need a break, but the hippo isn’t having any of it.<br><br>@khdarkwolf whispers to you, “Notice how it’s lounging around all day but has the nerve to call you lazy? It’s the Hippo-Crite!”<br><br>Your friend @jumorales nods. “Let’s show it what hard work looks like!”",
|
||||
"questHippoCompletion": "The hippo bows in surrender. “I underestimated you. It seems you weren’t 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"
|
||||
}
|
||||
|
||||
@@ -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, {
|
||||
|
||||
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user