YoJxsn

Untitled

Nov 6th, 2020
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. const BaseCommand = require('../../utils/structures/BaseCommand');
  2. const {MessageEmbed} = require('discord.js')
  3. module.exports = class DickCommand extends BaseCommand {
  4. constructor() {
  5. super('dick', 'Fun', []);
  6. }
  7.  
  8. async run(client, message, args) {
  9. let question = message.content.slice(5)
  10. console.log(question)
  11. if(!question){
  12. return message.reply("Bruh can't tell you atm.")
  13. } else {
  14. let responses = [
  15. "8D",
  16. "8=D",
  17. "8==D",
  18. "8===D",
  19. "8====D",
  20. "8=====D",
  21. "8======D",
  22. "8=======D",
  23. "8=======D",
  24. "8========D",
  25. "8=========D",
  26. "8==========D",
  27. "8===========D",
  28. "8============D"
  29. ]
  30. let Response = responses[Math.floor(Math.random()*(responses.length))]
  31. let Embed = new MessageEmbed()
  32. .setTitle('How Big is your dick')
  33. .setColor("#00a170")
  34. .setDescription(`Your question: ${question}\nMy reply: ${Response}`)
  35. message.channel.send(Embed)
  36. }
  37. }
  38. }
Add Comment
Please, Sign In to add comment