mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-14 21:27:23 +01:00
* common: import lodash modules separately * remove test/content from .eslintignore, fix with eslint --fix content/index * lint test/content * lint content/index except for lodash methods * upgrade server/models * upgrade server/middlewares and server/libs * port server/controllers/top-level * port server/controllers/api-v3 * port views and tests * client old port lodash and _(, missing _. * upgrade client-old * port common/script (root level files only) * port common/script/fns * port common/libs * port common/script/ops * port common/script/content and common/script/libs/shops.js * misc fixes * misc fixes * misc fixes * more tests fixes * fix payments test stubbing, down to 2 failing tests * remove more instances of lodash wrapping * fix bug where toObject does not clone object * fix tests * upgrade migration or add lodash 4 note * update shrinkwrap * fix linting * upgrade eslint-config-habitrpg * update shrinkwrap * recompile shrinkwrap
88 lines
2.0 KiB
JavaScript
88 lines
2.0 KiB
JavaScript
import content from '../content/index';
|
|
import i18n from '../i18n';
|
|
import get from 'lodash/get';
|
|
import {
|
|
BadRequest,
|
|
NotAuthorized,
|
|
NotFound,
|
|
} from '../libs/errors';
|
|
|
|
function evolve (user, pet, req) {
|
|
user.items.pets[pet.key] = -1;
|
|
user.items.mounts[pet.key] = true;
|
|
|
|
if (pet.key === user.items.currentPet) {
|
|
user.items.currentPet = '';
|
|
}
|
|
|
|
return i18n.t('messageEvolve', {
|
|
egg: pet.text(req.language),
|
|
}, req.language);
|
|
}
|
|
|
|
module.exports = function feed (user, req = {}) {
|
|
let pet = get(req, 'params.pet');
|
|
let foodK = get(req, 'params.food');
|
|
|
|
if (!pet || !foodK) throw new BadRequest(i18n.t('missingPetFoodFeed', req.language));
|
|
|
|
pet = content.petInfo[pet];
|
|
|
|
if (!pet) {
|
|
throw new BadRequest(i18n.t('invalidPetName', req.language));
|
|
}
|
|
|
|
let food = content.food[foodK];
|
|
if (!food) {
|
|
throw new NotFound(i18n.t('messageFoodNotFound', req.language));
|
|
}
|
|
|
|
let userPets = user.items.pets;
|
|
|
|
if (!userPets[pet.key]) {
|
|
throw new NotFound(i18n.t('messagePetNotFound', req.language));
|
|
}
|
|
|
|
if (!user.items.food[food.key]) {
|
|
throw new NotFound(i18n.t('messageFoodNotFound', req.language));
|
|
}
|
|
|
|
if (pet.type === 'special') {
|
|
throw new NotAuthorized(i18n.t('messageCannotFeedPet', req.language));
|
|
}
|
|
|
|
if (user.items.mounts[pet.key]) {
|
|
throw new NotAuthorized(i18n.t('messageAlreadyMount', req.language));
|
|
}
|
|
|
|
let message;
|
|
|
|
if (food.key === 'Saddle') {
|
|
message = evolve(user, pet, req);
|
|
} else {
|
|
let messageParams = {
|
|
egg: pet.text(req.language),
|
|
foodText: food.text(req.language),
|
|
};
|
|
|
|
if (food.target === pet.potion || pet.type === 'premium') {
|
|
userPets[pet.key] += 5;
|
|
message = i18n.t('messageLikesFood', messageParams, req.language);
|
|
} else {
|
|
userPets[pet.key] += 2;
|
|
message = i18n.t('messageDontEnjoyFood', messageParams, req.language);
|
|
}
|
|
|
|
if (userPets[pet.key] >= 50 && !user.items.mounts[pet.key]) {
|
|
message = evolve(user, pet, req);
|
|
}
|
|
}
|
|
|
|
user.items.food[food.key]--;
|
|
|
|
return [
|
|
userPets[pet.key],
|
|
message,
|
|
];
|
|
};
|