feat(content): Beetle Pet Quest
|
After Width: | Height: | Size: 6.2 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
|
@ -244,6 +244,11 @@ let quests = {
|
|||
adjective: t('questEggCowAdjective'),
|
||||
canBuy: hasQuestAchievementFunction('cow'),
|
||||
},
|
||||
Beetle: {
|
||||
text: t('questEggBeetleText'),
|
||||
adjective: t('questEggBeetleAdjective'),
|
||||
canBuy: hasQuestAchievementFunction('beetle'),
|
||||
},
|
||||
};
|
||||
|
||||
applyEggDefaults(drops, {
|
||||
|
|
|
|||
|
|
@ -2432,6 +2432,38 @@ api.quests = {
|
|||
unlock: t('questCowUnlockText'),
|
||||
},
|
||||
},
|
||||
beetle: {
|
||||
text: t('questBeetleText'),
|
||||
notes: t('questBeetleNotes'),
|
||||
completion: t('questBeetleCompletion'),
|
||||
value: 4,
|
||||
category: 'pet',
|
||||
boss: {
|
||||
name: t('questBeetleBoss'),
|
||||
hp: 500,
|
||||
str: 1.5,
|
||||
},
|
||||
drop: {
|
||||
items: [
|
||||
{
|
||||
type: 'eggs',
|
||||
key: 'Beetle',
|
||||
text: t('questBeetleDropBeetleEgg'),
|
||||
}, {
|
||||
type: 'eggs',
|
||||
key: 'Beetle',
|
||||
text: t('questBeetleDropBeetleEgg'),
|
||||
}, {
|
||||
type: 'eggs',
|
||||
key: 'Beetle',
|
||||
text: t('questBeetleDropBeetleEgg'),
|
||||
},
|
||||
],
|
||||
gp: 37,
|
||||
exp: 275,
|
||||
unlock: t('questBeetleUnlockText'),
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
_.each(api.quests, function(v, key) {
|
||||
|
|
|
|||