mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
feat(quests): January 2016 pet
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user