feat(quest): Ferret Pet
|
After Width: | Height: | Size: 9.4 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 790 B |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 977 B |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 881 B |
|
After Width: | Height: | Size: 842 B |
|
After Width: | Height: | Size: 839 B |
|
After Width: | Height: | Size: 913 B |
|
After Width: | Height: | Size: 873 B |
|
After Width: | Height: | Size: 900 B |
|
After Width: | Height: | Size: 887 B |
|
After Width: | Height: | Size: 784 B |
|
After Width: | Height: | Size: 844 B |
|
After Width: | Height: | Size: 843 B |
|
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.4 KiB |
|
After Width: | Height: | Size: 718 B |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
@@ -249,6 +249,11 @@ let quests = {
|
|||||||
adjective: t('questEggBeetleAdjective'),
|
adjective: t('questEggBeetleAdjective'),
|
||||||
canBuy: hasQuestAchievementFunction('beetle'),
|
canBuy: hasQuestAchievementFunction('beetle'),
|
||||||
},
|
},
|
||||||
|
Ferret: {
|
||||||
|
text: t('questEggFerretText'),
|
||||||
|
adjective: t('questEggFerretAdjective'),
|
||||||
|
canBuy: hasQuestAchievementFunction('ferret'),
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
applyEggDefaults(drops, {
|
applyEggDefaults(drops, {
|
||||||
|
|||||||
@@ -2621,6 +2621,38 @@ api.quests = {
|
|||||||
exp: 650
|
exp: 650
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
ferret: {
|
||||||
|
text: t('questFerretText'),
|
||||||
|
notes: t('questFerretNotes'),
|
||||||
|
completion: t('questFerretCompletion'),
|
||||||
|
value: 4,
|
||||||
|
category: 'pet',
|
||||||
|
boss: {
|
||||||
|
name: t('questFerretBoss'),
|
||||||
|
hp: 400,
|
||||||
|
str: 1.5,
|
||||||
|
},
|
||||||
|
drop: {
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
type: 'eggs',
|
||||||
|
key: 'Ferret',
|
||||||
|
text: t('questFerretDropFerretEgg'),
|
||||||
|
}, {
|
||||||
|
type: 'eggs',
|
||||||
|
key: 'Ferret',
|
||||||
|
text: t('questFerretDropFerretEgg'),
|
||||||
|
}, {
|
||||||
|
type: 'eggs',
|
||||||
|
key: 'Ferret',
|
||||||
|
text: t('questFerretDropFerretEgg'),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
gp: 31,
|
||||||
|
exp: 200,
|
||||||
|
unlock: t('questFerretUnlockText'),
|
||||||
|
},
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
_.each(api.quests, function(v, key) {
|
_.each(api.quests, function(v, key) {
|
||||||
|
|||||||