feat(content): May 2016 pet quest (#7310)

This commit is contained in:
Sabe Jones
2016-05-16 15:18:51 -05:00
parent 6ceea9346f
commit beb4a0d8bb
61 changed files with 3388 additions and 3071 deletions

View File

@@ -387,6 +387,13 @@ api.questEggs = {
return u.achievements.quests && (u.achievements.quests.falcon != null) > 0;
}),
},
Treeling: {
text: t('questEggTreelingText'),
adjective: t('questEggTreelingAdjective'),
canBuy: (function(u) {
return u.achievements.quests && (u.achievements.quests.treeling != null) > 0;
}),
},
};
_.each(api.questEggs, function(egg, key) {
@@ -2656,6 +2663,38 @@ api.quests = {
unlock: t('questFalconUnlockText'),
},
},
treeling: {
text: t('questTreelingText'),
notes: t('questTreelingNotes'),
completion: t('questTreelingCompletion'),
value: 4,
category: 'pet',
boss: {
name: t('questTreelingBoss'),
hp: 600,
str: 1.5,
},
drop: {
items: [
{
type: 'eggs',
key: 'Treeling',
text: t('questTreelingDropTreelingEgg'),
}, {
type: 'eggs',
key: 'Treeling',
text: t('questTreelingDropTreelingEgg'),
}, {
type: 'eggs',
key: 'Treeling',
text: t('questTreelingDropTreelingEgg'),
}
],
gp: 43,
exp: 350,
unlock: t('questTreelingUnlockText'),
},
},
};
_.each(api.quests, function(v, key) {