mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
feat(content): May 2016 pet quest (#7310)
This commit is contained in:
@@ -387,6 +387,13 @@ api.questEggs = {
|
||||
return u.achievements.quests && (u.achievements.quests.falcon != null) > 0;
|
||||
}),
|
||||
},
|
||||
Treeling: {
|
||||
text: t('questEggTreelingText'),
|
||||
adjective: t('questEggTreelingAdjective'),
|
||||
canBuy: (function(u) {
|
||||
return u.achievements.quests && (u.achievements.quests.treeling != null) > 0;
|
||||
}),
|
||||
},
|
||||
};
|
||||
|
||||
_.each(api.questEggs, function(egg, key) {
|
||||
@@ -2656,6 +2663,38 @@ api.quests = {
|
||||
unlock: t('questFalconUnlockText'),
|
||||
},
|
||||
},
|
||||
treeling: {
|
||||
text: t('questTreelingText'),
|
||||
notes: t('questTreelingNotes'),
|
||||
completion: t('questTreelingCompletion'),
|
||||
value: 4,
|
||||
category: 'pet',
|
||||
boss: {
|
||||
name: t('questTreelingBoss'),
|
||||
hp: 600,
|
||||
str: 1.5,
|
||||
},
|
||||
drop: {
|
||||
items: [
|
||||
{
|
||||
type: 'eggs',
|
||||
key: 'Treeling',
|
||||
text: t('questTreelingDropTreelingEgg'),
|
||||
}, {
|
||||
type: 'eggs',
|
||||
key: 'Treeling',
|
||||
text: t('questTreelingDropTreelingEgg'),
|
||||
}, {
|
||||
type: 'eggs',
|
||||
key: 'Treeling',
|
||||
text: t('questTreelingDropTreelingEgg'),
|
||||
}
|
||||
],
|
||||
gp: 43,
|
||||
exp: 350,
|
||||
unlock: t('questTreelingUnlockText'),
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
_.each(api.quests, function(v, key) {
|
||||
|
||||
Reference in New Issue
Block a user