Files
xiao/commands/random/gender.js
T
Daniel Odendahl Jr ca69138133 5 New Commands
2017-09-25 03:00:44 +00:00

33 lines
884 B
JavaScript

const Command = require('../../structures/Command');
const snekfetch = require('snekfetch');
module.exports = class GenderCommand extends Command {
constructor(client) {
super(client, {
name: 'gender',
group: 'random',
memberName: 'gender',
description: 'Determines the gender of name.',
args: [
{
key: 'name',
prompt: 'What name do you want to determine the gender of?',
type: 'string'
}
]
});
}
async run(msg, { name }) {
try {
const { body } = await snekfetch
.get('https://api.genderize.io/')
.query({ name });
if (!body.gender) return msg.say(`I have no idea what gender ${body.name} is.`);
return msg.say(`I'm ${Math.round(body.probability * 100)}% sure ${body.name} is a ${body.gender} name.`);
} catch (err) {
return msg.say(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
};