You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.2 KiB

const {Command} = require('../../lib.js')
const axios = require('axios')
const {EmbedBuilder} = require('discord.js')
class smug extends Command{
constructor(client){
super(client, {
name: 'smug',
group:'image',
memberName: 'smug',
description: 'Publishes an images of the theme: smug.'
})
}
async run(message, args){
var cmd = 'smug';
var res = await axios.get('https://rra.ram.moe/i/r', {params: {"type": cmd}});
var path = res.data.path.replace('/i/', '');
const embed = new EmbedBuilder()
embed.setColor(0xb50000);
embed.setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'})
embed.setTitle('Imagem:')
embed.setImage(`https://cdn.ram.moe/${path}`);
embed.setFooter({text:'Rem-chan em ', iconUrl:"https://i.imgur.com/g6FSNhL.png"})
embed.setTimestamp();
message.channel.send({embeds: [embed]});
}
}module.exports = smug;