Advertisement
xxxKookie

Dog

Mar 6th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const Discord = require('discord.js');
  2. const superagent = require('superagent');
  3.  
  4. exports.run = async (bot, message, args) => {
  5.  
  6.     const {body} = await superagent
  7.     .get(`https://nekos.life/api/v2/img/woof`);
  8.    
  9.     var embed = new Discord.RichEmbed()
  10.     .setImage(body.url)
  11.     .setColor("36393e")
  12.     .setTimestamp(new Date())
  13.     message.channel.send(embed);
  14.    
  15. }
  16.  
  17. exports.help = {
  18.     name: "au"
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement