chore(grunt): compile sprites

This commit is contained in:
Sabe Jones
2015-02-17 20:46:40 -06:00
parent 47f3122c2d
commit 87b13d5fc8
6 changed files with 223 additions and 182 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
}
}
};