feat(content): Nudibranch Pets

This commit is contained in:
SabreCat
2017-06-13 21:09:13 +00:00
parent 4a78514308
commit 256e2e809c
49 changed files with 84 additions and 22 deletions

View File

@@ -320,6 +320,12 @@ let quests = {
adjective: t('questEggButterflyAdjective'),
canBuy: hasQuestAchievementFunction('butterfly'),
},
Nudibranch: {
text: t('questEggNudibranchText'),
mountText: t('questEggNudibranchMountText'),
adjective: t('questEggNudibranchAdjective'),
canBuy: hasQuestAchievementFunction('nudibranch'),
},
};
applyEggDefaults(drops, {

View File

@@ -2688,6 +2688,38 @@ let quests = {
exp: 650,
},
},
nudibranch: {
text: t('questNudibranchText'),
notes: t('questNudibranchNotes'),
completion: t('questNudibranchCompletion'),
value: 4,
category: 'pet',
boss: {
name: t('questNudibranchBoss'),
hp: 400,
str: 1.5,
},
drop: {
items: [
{
type: 'eggs',
key: 'Nudibranch',
text: t('questNudibranchDropNudibranchEgg'),
}, {
type: 'eggs',
key: 'Nudibranch',
text: t('questNudibranchDropNudibranchEgg'),
}, {
type: 'eggs',
key: 'Nudibranch',
text: t('questNudibranchDropNudibranchEgg'),
},
],
gp: 31,
exp: 200,
unlock: t('questNudibranchUnlockText'),
},
},
};
each(quests, (v, key) => {