feat(quests): January 2016 pet

This commit is contained in:
Sabe Jones
2016-01-13 17:15:02 -05:00
parent fc01104a0d
commit 14a6d0dabf
73 changed files with 5813 additions and 5480 deletions

View File

@@ -932,6 +932,13 @@ api.questEggs = {
return u.achievements.quests && (u.achievements.quests.unicorn != null) > 0;
})
},
Sabretooth: {
text: t('questEggSabretoothText'),
adjective: t('questEggSabretoothAdjective'),
canBuy: (function(u) {
return u.achievements.quests && (u.achievements.quests.sabretooth != null) > 0;
})
},
};
_.each(api.questEggs, function(egg, key) {
@@ -2981,6 +2988,38 @@ api.quests = {
unlock: t('questUnicornUnlockText')
}
},
sabretooth: {
text: t('questSabretoothText'),
notes: t('questSabretoothNotes'),
completion: t('questSabretoothCompletion'),
value: 4,
category: 'pet',
boss: {
name: t('questSabretoothBoss'),
hp: 1000,
str: 2
},
drop: {
items: [
{
type: 'eggs',
key: 'Sabretooth',
text: t('questSabretoothDropSabretoothEgg')
}, {
type: 'eggs',
key: 'Sabretooth',
text: t('questSabretoothDropSabretoothEgg')
}, {
type: 'eggs',
key: 'Sabretooth',
text: t('questSabretoothDropSabretoothEgg')
}
],
gp: 67,
exp: 650,
unlock: t('questSabretoothUnlockText')
}
},
};
_.each(api.quests, function(v, key) {