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.
27 lines
1.0 KiB
27 lines
1.0 KiB
const {Command} = require('../../lib.js')
|
|
|
|
const {EmbedBuilder} = require('discord.js')
|
|
module.exports = class report extends Command{
|
|
constructor(client){
|
|
super(client, {
|
|
name: 'report',
|
|
group:'image',
|
|
memberName: 'report',
|
|
description: 'Coninhas Report.'
|
|
|
|
})
|
|
}
|
|
async run(message, args)
|
|
{
|
|
|
|
const embed = new EmbedBuilder;
|
|
embed.setColor(0xeb7d00);
|
|
embed.setTitle('É favor preencher:')
|
|
embed.setImage(`https://cdn.discordapp.com/attachments/662397316744871937/852352291428499456/64327307_2251125638288816_7660501929683845120_n.jpg`);
|
|
embed.setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'})
|
|
embed.setFooter({text:'Rem-chan em ', iconUrl:"https://i.imgur.com/g6FSNhL.png"})
|
|
embed.setTimestamp();
|
|
|
|
message.channel.send({embeds: [embed]});
|
|
}
|
|
} |