diff --git a/commands/nsfw/ass.js b/commands/nsfw/ass.js new file mode 100644 index 0000000..a9e2e2d --- /dev/null +++ b/commands/nsfw/ass.js @@ -0,0 +1,23 @@ +const discord = require("discord.js"); +const akaneko = require('akaneko'); + +module.exports = { + name: "ass", + aliases: [], + category: "nsfw", + description: "Get some wallpapers", + run: async (client, message, args) => { + + if(!message.channel.nsfw) { + return message.reply("This channel dosen't support nsfw content") + + } else { + + let akanekoSan = new discord.MessageEmbed() + akanekoSan.setColor("RANDOM") + akanekoSan.setImage(akaneko.nsfw.ass()); + return message.channel.send(akanekoSan); + + } + } +}