feat(content): Pets 201608 (#7903)

This commit is contained in:
Sabe Jones
2016-08-18 12:40:29 -05:00
committed by GitHub
parent 7ef2c34177
commit 0c11d8fb6d
46 changed files with 51 additions and 1 deletions

View File

@@ -408,6 +408,13 @@ api.questEggs = {
return u.achievements.quests && (u.achievements.quests.turtle != null) > 0;
}),
},
Armadillo: {
text: t('questEggArmadilloText'),
adjective: t('questEggArmadilloAdjective'),
canBuy: (function(u) {
return u.achievements.quests && (u.achievements.quests.armadillo != null) > 0;
}),
},
};
_.each(api.questEggs, function(egg, key) {
@@ -2793,6 +2800,38 @@ api.quests = {
unlock: t('questTurtleUnlockText'),
},
},
armadillo: {
text: t('questArmadilloText'),
notes: t('questArmadilloNotes'),
completion: t('questArmadilloCompletion'),
value: 4,
category: 'pet',
boss: {
name: t('questArmadilloBoss'),
hp: 600,
str: 1.5,
},
drop: {
items: [
{
type: 'eggs',
key: 'Armadillo',
text: t('questArmadilloDropArmadilloEgg'),
}, {
type: 'eggs',
key: 'Armadillo',
text: t('questArmadilloDropArmadilloEgg'),
}, {
type: 'eggs',
key: 'Armadillo',
text: t('questArmadilloDropArmadilloEgg'),
}
],
gp: 43,
exp: 350,
unlock: t('questArmadilloUnlockText'),
},
},
};
_.each(api.quests, function(v, key) {