feat(content): new Gold quests (#8418)

and Wintery Skins, and fixes #8412
This commit is contained in:
Sabe Jones
2017-01-17 16:03:10 -08:00
committed by GitHub
parent 69cac7e504
commit 6169b9d0ae
42 changed files with 160 additions and 11 deletions

View File

@@ -2817,6 +2817,111 @@ api.quests = {
unlock: t('questTriceratopsUnlockText'),
},
},
stoikalmCalamity1: {
text: t('questStoikalmCalamity1Text'),
notes: t('questStoikalmCalamity1Notes'),
completion: t('questStoikalmCalamity1Completion'),
value: 4,
goldValue: 200,
category: 'gold',
boss: {
name: t('questStoikalmCalamity1Boss'),
hp: 500,
rage: {
title: t("questStoikalmCalamity1RageTitle"),
description: t("questStoikalmCalamity1RageDescription"),
value: 50,
healing: .3,
effect: t('questStoikalmCalamity1RageEffect')
}
},
drop: {
items: [
{
type: 'hatchingPotions',
key: 'Skeleton',
text: t('questStoikalmCalamity1DropSkeletonPotion')
}, {
type: 'hatchingPotions',
key: 'Desert',
text: t('questStoikalmCalamity1DropDesertPotion')
}, {
type: 'gear',
key: "armor_special_mammothRiderArmor",
text: t('questStoikalmCalamity1DropArmor')
}
],
gp: 0,
exp: 500
}
},
stoikalmCalamity2: {
text: t('questStoikalmCalamity2Text'),
notes: t('questStoikalmCalamity2Notes'),
completion: t('questStoikalmCalamity2Completion'),
previous: 'stoikalmCalamity1',
value: 4,
goldValue: 300,
category: 'gold',
collect: {
icicleCoin: {
text: t('questStoikalmCalamity2CollectIcicleCoins'),
count: 40
},
},
drop: {
items: [
{
type: 'gear',
key: "head_special_mammothRiderHelm",
text: t('questStoikalmCalamity2DropHeadgear')
}
],
gp: 0,
exp: 75
}
},
stoikalmCalamity3: {
text: t('questStoikalmCalamity3Text'),
notes: t('questStoikalmCalamity3Notes'),
completion: t('questStoikalmCalamity3Completion'),
previous: 'stoikalmCalamity2',
value: 4,
goldValue: 400,
category: 'gold',
boss: {
name: t('questStoikalmCalamity3Boss'),
hp: 1000,
str: 2
},
drop: {
items: [
{
type: 'food',
key: 'CottonCandyBlue',
text: t('questStoikalmCalamity3DropBlueCottonCandy')
}, {
type: 'food',
key: 'CottonCandyBlue',
text: t('questStoikalmCalamity3DropBlueCottonCandy')
}, {
type: 'food',
key: 'CottonCandyBlue',
text: t('questStoikalmCalamity3DropBlueCottonCandy')
}, {
type: 'gear',
key: "weapon_special_mammothRiderSpear",
text: t('questStoikalmCalamity3DropWeapon')
}, {
type: 'gear',
key: "shield_special_mammothRiderHorn",
text: t('questStoikalmCalamity3DropShield')
},
],
gp: 0,
exp: 650
}
},
};
_.each(api.quests, function(v, key) {