June Pet: Axolotl (#7663)

* feat(quests): Axolotl pet

* feat(pets): finish axolotl build
This commit is contained in:
Sabe Jones
2016-06-15 12:14:25 -05:00
committed by GitHub
parent 337cb22a9d
commit 28e45aea4d
63 changed files with 4487 additions and 4160 deletions

View File

@@ -394,6 +394,13 @@ api.questEggs = {
return u.achievements.quests && (u.achievements.quests.treeling != null) > 0;
}),
},
Axolotl: {
text: t('questEggAxolotlText'),
adjective: t('questEggAxolotlAdjective'),
canBuy: (function(u) {
return u.achievements.quests && (u.achievements.quests.axolotl != null) > 0;
}),
},
};
_.each(api.questEggs, function(egg, key) {
@@ -2704,6 +2711,45 @@ api.quests = {
unlock: t('questTreelingUnlockText'),
},
},
axolotl: {
text: t('questAxolotlText'),
notes: t('questAxolotlNotes'),
completion: t('questAxolotlCompletion'),
value: 4,
category: 'pet',
boss: {
name: t('questAxolotlBoss'),
hp: 500,
str: 1.5,
rage: {
title: t('questAxolotlRageTitle'),
description: t('questAxolotlRageDescription'),
value: 50,
healing: .3,
effect: t('questAxolotlRageEffect'),
},
},
drop: {
items: [
{
type: 'eggs',
key: 'Axolotl',
text: t('questAxolotlDropAxolotlEgg'),
}, {
type: 'eggs',
key: 'Axolotl',
text: t('questAxolotlDropAxolotlEgg'),
}, {
type: 'eggs',
key: 'Axolotl',
text: t('questAxolotlDropAxolotlEgg'),
}
],
gp: 37,
exp: 275,
unlock: t('questAxolotlUnlockText'),
},
},
};
_.each(api.quests, function(v, key) {