mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 06:37:23 +01:00
* Re-organize common folder * fix: Correct paths in tests * fix: move new content to proper folder * chore: Move audio folder to assets * Move sprites to sprites assets directory * Move css sprites to assets directory * Split out readmes for common code and sprites * Move images to assets directory * Move destinatin of shared browserified file * remove unused file * move compiled js to client-old * Fix karma tests * fix: Correct paths for sprites
70 lines
1.6 KiB
JavaScript
70 lines
1.6 KiB
JavaScript
import content from '../content/index';
|
|
import i18n from '../i18n';
|
|
import {
|
|
NotAuthorized,
|
|
} from '../libs/errors';
|
|
import splitWhitespace from '../libs/splitWhitespace';
|
|
import _ from 'lodash';
|
|
|
|
module.exports = function releaseBoth (user, req = {}, analytics) {
|
|
let animal;
|
|
|
|
if (user.balance < 1.5 && !user.achievements.triadBingo) {
|
|
throw new NotAuthorized(i18n.t('notEnoughGems', req.language));
|
|
}
|
|
|
|
let giveTriadBingo = true;
|
|
|
|
if (!user.achievements.triadBingo) {
|
|
if (analytics) {
|
|
analytics.track('release pets & mounts', {
|
|
uuid: user._id,
|
|
acquireMethod: 'Gems',
|
|
gemCost: 6,
|
|
category: 'behavior',
|
|
headers: req.headers,
|
|
});
|
|
}
|
|
|
|
user.balance -= 1.5;
|
|
}
|
|
|
|
user.items.currentMount = '';
|
|
user.items.currentPet = '';
|
|
|
|
for (animal in content.pets) {
|
|
if (user.items.pets[animal] === -1) {
|
|
giveTriadBingo = false;
|
|
}
|
|
|
|
user.items.pets[animal] = 0;
|
|
user.items.mounts[animal] = null;
|
|
}
|
|
|
|
if (!user.achievements.beastMasterCount) {
|
|
user.achievements.beastMasterCount = 0;
|
|
}
|
|
user.achievements.beastMasterCount++;
|
|
|
|
if (!user.achievements.mountMasterCount) {
|
|
user.achievements.mountMasterCount = 0;
|
|
}
|
|
user.achievements.mountMasterCount++;
|
|
|
|
if (giveTriadBingo) {
|
|
if (!user.achievements.triadBingoCount) {
|
|
user.achievements.triadBingoCount = 0;
|
|
}
|
|
user.achievements.triadBingoCount++;
|
|
}
|
|
|
|
if (req.v2 === true) {
|
|
return user;
|
|
} else {
|
|
return [
|
|
_.pick(user, splitWhitespace('achievements items balance')),
|
|
i18n.t('mountsAndPetsReleased'),
|
|
];
|
|
}
|
|
};
|