Merge branch 'develop' into task-difficulty-context-classes

This commit is contained in:
Bill Parrott
2015-02-17 22:31:27 -06:00
35 changed files with 2738 additions and 2647 deletions

View File

@@ -2924,6 +2924,11 @@ api.questEggs = {
text: t('questEggTRexText'),
adjective: t('questEggTRexAdjective'),
canBuy: false
},
Rock: {
text: t('questEggRockText'),
adjective: t('questEggRockAdjective'),
canBuy: false
}
};
@@ -4307,6 +4312,36 @@ api.quests = {
gp: 55,
exp: 500
}
},
rock: {
text: t('questRockText'),
notes: t('questRockNotes'),
completion: t('questRockCompletion'),
value: 4,
boss: {
name: t('questRockBoss'),
hp: 400,
str: 1.5
},
drop: {
items: [
{
type: 'eggs',
key: 'Rock',
text: t('questRockDropRockEgg')
}, {
type: 'eggs',
key: 'Rock',
text: t('questRockDropRockEgg')
}, {
type: 'eggs',
key: 'Rock',
text: t('questRockDropRockEgg')
}
],
gp: 31,
exp: 200
}
}
};