feat(content): Badger Pet Quest

This commit is contained in:
SabreCat
2018-02-07 02:03:30 +00:00
parent e219ad6bdf
commit dcdeec6256
50 changed files with 67 additions and 30 deletions
+4
View File
@@ -227,6 +227,10 @@
"questEggPterodactylMountText": "Pterodactyl",
"questEggPterodactylAdjective": "trusting",
"questEggBadgerText": "Badger",
"questEggBadgerMountText": "Badger",
"questEggBadgerAdjective": "bustling",
"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
@@ -647,5 +647,12 @@
"questPterodactylCompletion": "With one last screech the Pterror-dactyl plummets over the side of the cliff. You run forward to watch it soar away over the distant steppes. \"Phew, I'm glad that's over,\" you say. \"Me too,\" replies @GeraldThePixel. \"But look! It's left some eggs behind for us.\" @Edge passes you three eggs, and you vow to raise them in tranquility, surrounded by positive Habits and blue Dailies.",
"questPterodactylBoss": "Pterror-dactyl",
"questPterodactylDropPterodactylEgg": "Pterodactyl (Egg)",
"questPterodactylUnlockText": "Unlocks purchasable Pterodactyl eggs in the Market"
"questPterodactylUnlockText": "Unlocks purchasable Pterodactyl eggs in the Market",
"questBadgerText": "Stop Badgering Me!",
"questBadgerNotes": "Ah, winter in the Taskwoods. The softly falling snow, the branches sparkling with frost, the Flourishing Fairies… still not snoozing?<br><br>“Why are they still awake?” cries @LilithofAlfheim. “If they don't hibernate soon, they'll never have the energy for planting season.”<br><br>As you and @Willow the Witty hurry to investigate, a furry head pops up from the ground. Before you can yell, “Its the Badgering Bother!” its back in its burrow—but not before snatching up the Fairies' “Hibernate” To-Dos and dropping a giant list of pesky tasks in their place!<br><br>“No wonder the fairies aren't resting, if they're constantly being badgered like that!” @plumilla says. Can you chase off this beast and save the Taskwoods harvest this year?",
"questBadgerCompletion": "You finally drive away the the Badgering Bother and hurry into its burrow. At the end of a tunnel, you find its hoard of the faeries “Hibernate” To-Dos. The den is otherwise abandoned, except for three eggs that look ready to hatch.",
"questBadgerBoss": "The Badgering Bother",
"questBadgerDropBadgerEgg": "Badger (Egg)",
"questBadgerUnlockText": "Unlocks purchasable Badger eggs in the Market"
}
+6
View File
@@ -344,6 +344,12 @@ let quests = {
adjective: t('questEggPterodactylAdjective'),
canBuy: hasQuestAchievementFunction('pterodactyl'),
},
Badger: {
text: t('questEggBadgerText'),
mountText: t('questEggBadgerMountText'),
adjective: t('questEggBadgerAdjective'),
canBuy: hasQuestAchievementFunction('badger'),
},
};
applyEggDefaults(drops, {
+32
View File
@@ -3067,6 +3067,38 @@ let quests = {
unlock: t('questPterodactylUnlockText'),
},
},
badger: {
text: t('questBadgerText'),
notes: t('questBadgerNotes'),
completion: t('questBadgerCompletion'),
value: 4,
category: 'pet',
boss: {
name: t('questBadgerBoss'),
hp: 600,
str: 1.5,
},
drop: {
items: [
{
type: 'eggs',
key: 'Badger',
text: t('questBadgerDropBadgerEgg'),
}, {
type: 'eggs',
key: 'Badger',
text: t('questBadgerDropBadgerEgg'),
}, {
type: 'eggs',
key: 'Badger',
text: t('questBadgerDropBadgerEgg'),
},
],
gp: 43,
exp: 350,
unlock: t('questBadgerUnlockText'),
},
},
};
each(quests, (v, key) => {