feat(content): Wind-Up Potions quest
This commit is contained in:
@@ -333,6 +333,13 @@ const premium = {
|
||||
date: t('dateEndJuly'),
|
||||
}),
|
||||
},
|
||||
Windup: {
|
||||
value: 2,
|
||||
text: t('hatchingPotionWindup'),
|
||||
limited: true,
|
||||
canBuy: hasQuestAchievementFunction('windup'),
|
||||
_addlNotes: t('premiumPotionUnlimitedNotes'),
|
||||
},
|
||||
};
|
||||
|
||||
const wacky = {
|
||||
|
||||
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user