mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 15:56:52 +02:00
33 lines
884 B
JavaScript
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!`);
|
|
}
|
|
}
|
|
};
|