Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- commands.raw('cat', async (message) => {
- const req = await fetch('https://shibe.online/api/cats');
- const data = await req.json();
- await message.reply(
- new discord.Embed({
- title: 'A random cat image <3',
- color: 0x00ff00,
- image: {
- url: data[0]
- },
- footer: {
- text:
- 'Made by LeLe#1460'
- }
- })
- );
- });
Add Comment
Please, Sign In to add comment