mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
June Pet: Axolotl (#7663)
* feat(quests): Axolotl pet * feat(pets): finish axolotl build
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user