mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
Merge pull request #6849 from HabitRPG/sabrecat/pets-201603
Pet quest March 2016
This commit is contained in:
@@ -373,6 +373,13 @@ api.questEggs = {
|
||||
return u.achievements.quests && (u.achievements.quests.monkey != null) > 0;
|
||||
})
|
||||
},
|
||||
Snail: {
|
||||
text: t('questEggSnailText'),
|
||||
adjective: t('questEggSnailAdjective'),
|
||||
canBuy: (function(u) {
|
||||
return u.achievements.quests && (u.achievements.quests.snail != null) > 0;
|
||||
})
|
||||
},
|
||||
};
|
||||
|
||||
_.each(api.questEggs, function(egg, key) {
|
||||
@@ -2488,6 +2495,38 @@ api.quests = {
|
||||
unlock: t('questMonkeyUnlockText')
|
||||
}
|
||||
},
|
||||
snail: {
|
||||
text: t('questSnailText'),
|
||||
notes: t('questSnailNotes'),
|
||||
completion: t('questSnailCompletion'),
|
||||
value: 4,
|
||||
category: 'pet',
|
||||
boss: {
|
||||
name: t('questSnailBoss'),
|
||||
hp: 500,
|
||||
str: 1.5
|
||||
},
|
||||
drop: {
|
||||
items: [
|
||||
{
|
||||
type: 'eggs',
|
||||
key: 'Snail',
|
||||
text: t('questSnailDropSnailEgg')
|
||||
}, {
|
||||
type: 'eggs',
|
||||
key: 'Snail',
|
||||
text: t('questSnailDropSnailEgg')
|
||||
}, {
|
||||
type: 'eggs',
|
||||
key: 'Snail',
|
||||
text: t('questSnailDropSnailEgg')
|
||||
}
|
||||
],
|
||||
gp: 37,
|
||||
exp: 275,
|
||||
unlock: t('questSnailUnlockText')
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
_.each(api.quests, function(v, key) {
|
||||
|
||||
Reference in New Issue
Block a user