feat(content): Wind-Up Potions quest

This commit is contained in:
Sabe Jones
2020-08-25 16:04:28 -05:00
parent 6559353613
commit f4c453675b
43 changed files with 78 additions and 38 deletions

View File

@@ -3647,6 +3647,41 @@ const quests = {
unlock: t('questFluoriteUnlockText'),
},
},
windup: {
text: t('questWindupText'),
notes: t('questWindupNotes'),
completion: t('questWindupCompletion'),
value: 1,
category: 'timeTravelers',
canBuy () {
return false;
},
boss: {
name: t('questWindupBoss'),
hp: 1000,
str: 1,
},
drop: {
items: [
{
type: 'hatchingPotions',
key: 'Windup',
text: t('questWindupDropWindupPotion'),
}, {
type: 'hatchingPotions',
key: 'Windup',
text: t('questWindupDropWindupPotion'),
}, {
type: 'hatchingPotions',
key: 'Windup',
text: t('questWindupDropWindupPotion'),
},
],
gp: 50,
exp: 425,
unlock: t('questWindupUnlockText'),
},
},
};
each(quests, (v, key) => {