feat(quest): Ferret Pet

This commit is contained in:
Sabe Jones
2016-11-15 22:14:12 +00:00
parent 00e6389672
commit b6fdac8885
45 changed files with 37 additions and 0 deletions

View File

@@ -2621,6 +2621,38 @@ api.quests = {
exp: 650
}
},
ferret: {
text: t('questFerretText'),
notes: t('questFerretNotes'),
completion: t('questFerretCompletion'),
value: 4,
category: 'pet',
boss: {
name: t('questFerretBoss'),
hp: 400,
str: 1.5,
},
drop: {
items: [
{
type: 'eggs',
key: 'Ferret',
text: t('questFerretDropFerretEgg'),
}, {
type: 'eggs',
key: 'Ferret',
text: t('questFerretDropFerretEgg'),
}, {
type: 'eggs',
key: 'Ferret',
text: t('questFerretDropFerretEgg'),
},
],
gp: 31,
exp: 200,
unlock: t('questFerretUnlockText'),
},
},
};
_.each(api.quests, function(v, key) {