feat(pets): December quest

This commit is contained in:
Sabe Jones
2015-12-14 16:28:39 -05:00
parent e638661c71
commit fe1de12494
61 changed files with 2490 additions and 2162 deletions

View File

@@ -922,7 +922,15 @@ api.questEggs = {
canBuy: (function(u) {
return u.achievements.quests && (u.achievements.quests.snake != null) > 0;
})
}
},
Unicorn: {
text: t('questEggUnicornText'),
mountText: t('questEggUnicornMountText'),
adjective: t('questEggUnicornAdjective'),
canBuy: (function(u) {
return u.achievements.quests && (u.achievements.quests.unicorn != null) > 0;
})
},
};
_.each(api.questEggs, function(egg, key) {
@@ -2940,7 +2948,39 @@ api.quests = {
exp: 725,
unlock: t('questSnakeUnlockText')
}
}
},
unicorn: {
text: t('questUnicornText'),
notes: t('questUnicornNotes'),
completion: t('questUnicornCompletion'),
value: 4,
category: 'pet',
boss: {
name: t('questUnicornBoss'),
hp: 600,
str: 1.5
},
drop: {
items: [
{
type: 'eggs',
key: 'Unicorn',
text: t('questUnicornDropUnicornEgg')
}, {
type: 'eggs',
key: 'Unicorn',
text: t('questUnicornDropUnicornEgg')
}, {
type: 'eggs',
key: 'Unicorn',
text: t('questUnicornDropUnicornEgg')
}
],
gp: 43,
exp: 350,
unlock: t('questUnicornUnlockText')
}
},
};
_.each(api.quests, function(v, key) {