Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const BaseCommand = require('../../utils/structures/BaseCommand');
- const {MessageEmbed} = require('discord.js')
- module.exports = class DickCommand extends BaseCommand {
- constructor() {
- super('dick', 'Fun', []);
- }
- async run(client, message, args) {
- let question = message.content.slice(5)
- console.log(question)
- if(!question){
- return message.reply("Bruh can't tell you atm.")
- } else {
- let responses = [
- "8D",
- "8=D",
- "8==D",
- "8===D",
- "8====D",
- "8=====D",
- "8======D",
- "8=======D",
- "8=======D",
- "8========D",
- "8=========D",
- "8==========D",
- "8===========D",
- "8============D"
- ]
- let Response = responses[Math.floor(Math.random()*(responses.length))]
- let Embed = new MessageEmbed()
- .setTitle('How Big is your dick')
- .setColor("#00a170")
- .setDescription(`Your question: ${question}\nMy reply: ${Response}`)
- message.channel.send(Embed)
- }
- }
- }
Add Comment
Please, Sign In to add comment