This is a basic cat command with cat facts, because why not learn about cats?
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
const facts = require('cat-facts');
// You could add more if you want to!
let messagePrompts = [
'https://i.pinimg.com/originals/fd/6c/07/fd6c079e840fb1fe34e91856bb5d2b0d.gif',
'https://i.pinimg.com/originals/72/62/bd/7262bd727b27dcffc5c948acc103d38a.gif',
];
let messageChoice = Math.floor(Math.random() * messagePrompts.length);
let message = messagePrompts[messageChoice];
await lib.discord.channels['@0.0.3'].messages.create({
channel_id: `${context.params.event.channel_id}`,
content: '',
embed: {
title: `${facts.random()}`,
description: ``,
type: 'gifv',
color: 0xffffff,
image: {
url: `${message}`,
},
},
});