feat(content): Kangaroo Pet Quest

This commit is contained in:
Sabe Jones
2018-08-16 14:40:09 -05:00
parent b0e4c2cb11
commit 0142e332e8
55 changed files with 94 additions and 25 deletions
+6
View File
@@ -362,6 +362,12 @@ let quests = {
adjective: t('questEggSeaSerpentAdjective'),
canBuy: hasQuestAchievementFunction('seaserpent'),
},
Kangaroo: {
text: t('questEggKangarooText'),
mountText: t('questEggKangarooMountText'),
adjective: t('questEggKangarooAdjective'),
canBuy: hasQuestAchievementFunction('kangaroo'),
},
};
applyEggDefaults(drops, {
+32
View File
@@ -3257,6 +3257,38 @@ let quests = {
unlock: t('questSeaSerpentUnlockText'),
},
},
kangaroo: {
text: t('questKangarooText'),
notes: t('questKangarooNotes'),
completion: t('questKangarooCompletion'),
value: 4,
category: 'pet',
boss: {
name: t('questKangarooBoss'),
hp: 700,
str: 2,
},
drop: {
items: [
{
type: 'eggs',
key: 'Kangaroo',
text: t('questKangarooDropKangarooEgg'),
}, {
type: 'eggs',
key: 'Kangaroo',
text: t('questKangarooDropKangarooEgg'),
}, {
type: 'eggs',
key: 'Kangaroo',
text: t('questKangarooDropKangarooEgg'),
},
],
gp: 49,
exp: 425,
unlock: t('questKangarooUnlockText'),
},
},
};
each(quests, (v, key) => {