feat(content): Pet Quest 201909

This commit is contained in:
Sabe Jones
2016-09-13 20:01:53 +00:00
parent f5f8f8c246
commit 52d8667fdb
67 changed files with 4445 additions and 4108 deletions
+5
View File
@@ -239,6 +239,11 @@ let quests = {
adjective: t('questEggArmadilloAdjective'),
canBuy: hasQuestAchievementFunction('armadillo'),
},
Cow: {
text: t('questEggCowText'),
adjective: t('questEggCowAdjective'),
canBuy: hasQuestAchievementFunction('cow'),
},
};
applyEggDefaults(drops, {
+32
View File
@@ -2360,6 +2360,38 @@ api.quests = {
unlock: t('questArmadilloUnlockText'),
},
},
cow: {
text: t('questCowText'),
notes: t('questCowNotes'),
completion: t('questCowCompletion'),
value: 4,
category: 'pet',
boss: {
name: t('questCowBoss'),
hp: 400,
str: 1.5,
},
drop: {
items: [
{
type: 'eggs',
key: 'Cow',
text: t('questCowDropCowEgg'),
}, {
type: 'eggs',
key: 'Cow',
text: t('questCowDropCowEgg'),
}, {
type: 'eggs',
key: 'Cow',
text: t('questCowDropCowEgg'),
}
],
gp: 31,
exp: 200,
unlock: t('questCowUnlockText'),
},
},
};
_.each(api.quests, function(v, key) {