feat(content): Badger Pet Quest
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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, “It’s the Badgering Bother!” it’s 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 Taskwood’s 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"
|
||||
}
|
||||
|
||||
@@ -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, {
|
||||
|
||||
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user