Role Management, gelbooru/danbooru/konachan

This commit is contained in:
Daniel Odendahl Jr
2018-03-05 22:14:25 +00:00
parent ff8dfba2ac
commit c53eca459e
13 changed files with 335 additions and 2 deletions
+18
View File
@@ -0,0 +1,18 @@
const { Command } = require('discord.js-commando');
module.exports = class DickCommand extends Command {
constructor(client) {
super(client, {
name: 'dick',
aliases: ['dick-size'],
group: 'random',
memberName: 'dick',
description: 'Determines your dick size.',
nsfw: true
});
}
run(msg) {
return msg.say(`8${'='.repeat(Math.floor(Math.random() * 200) + 1)}D`);
}
};