feat(content): Magic Hatching Quest

This commit is contained in:
Sabe Jones
2020-02-11 16:09:51 -06:00
parent 3719efa874
commit 6324ef72df
46 changed files with 63 additions and 36 deletions

View File

@@ -3537,6 +3537,47 @@ const quests = {
unlock: t('questAmberUnlockText'),
},
},
ruby: {
text: t('questRubyText'),
notes: t('questRubyNotes'),
completion: t('questRubyCompletion'),
value: 4,
category: 'hatchingPotion',
collect: {
rubyGem: {
text: t('questRubyCollectRubyGems'),
count: 25,
},
venusRune: {
text: t('questRubyCollectVenusRunes'),
count: 10,
},
aquariusRune: {
text: t('questRubyCollectAquariusRunes'),
count: 10,
},
},
drop: {
items: [
{
type: 'hatchingPotions',
key: 'Ruby',
text: t('questRubyDropRubyPotion'),
}, {
type: 'hatchingPotions',
key: 'Ruby',
text: t('questRubyDropRubyPotion'),
}, {
type: 'hatchingPotions',
key: 'Ruby',
text: t('questRubyDropRubyPotion'),
},
],
gp: 50,
exp: 100,
unlock: t('questRubyUnlockText'),
},
},
};
each(quests, (v, key) => {

View File

@@ -56,7 +56,7 @@ const featuredItems = {
},
{
type: 'quests',
path: 'quests.silver',
path: 'quests.ruby',
},
];
},