feat(content): Kangaroo Pet Quest
This commit is contained in:
@@ -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, {
|
||||
|
||||
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user