Send random food images into a channel on a Discord server
// authenticates you with the API standard library
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
// Add more food for your command here -
let messagePrompts2 = [
'https://www.eatthis.com/wp-content/uploads/sites/4/2019/11/whole-grain-pancake-stack.jpg?fit=1200%2C879&ssl=1',
'https://www.hungryforever.com/wp-content/uploads/2015/06/Featured-image-burgers-in-bangalore.jpg',
'https://imgmedia.lbb.in/media/2019/07/5d242ad8e93a896e5542da0d_1562651352251.jpg',
'https://imgstaticcontent.lbb.in/lbbnew/wp-content/uploads/sites/2/2018/04/16223011/Sanchez-i.jpg',
'https://health.clevelandclinic.org/wp-content/uploads/sites/3/2015/03/chocolateWhiteDark-454384771-770x533-1.jpg',
'https://img.etimg.com/thumb/msid-84939728,width-1200,height-900,imgsize-381352,resizemode-8,quality-100/magazines/panache/from-the-us-russia-to-india-an-ice-cream-bowl-has-a-long-political-history.jpg',
'https://c.ndtvimg.com/2019-09/juihv6c8_eggless-chocolate-chip-cookies_625x300_04_September_19.jpg',
'https://i0.wp.com/vegecravings.com/wp-content/uploads/2021/02/Mayonnaise-Sandwish-Recipe-Step-By-Step-Instructions-scaled.jpg?fit=2560%2C1890&quality=65&strip=all&ssl=1',
'https://media.wired.com/photos/6074aa620dfeac35a0cca839/master/pass/Science_donuts_465529983.jpg',
'https://www.wellplated.com/wp-content/uploads/2020/07/Creamy-Watermelon-Smoothie.jpg',
'https://cdn.shopify.com/s/files/1/0944/0726/files/funfetti-cake-1_large.jpg?12899557750417805525',
'https://www.mybakingaddiction.com/wp-content/uploads/2015/07/smoreswafflesundaes.jpg',
];
if (context.params.event.content.trim() === `${process.env.PREFIX}food`) {
// You can change the command
let messageChoice = Math.floor(Math.random() * messagePrompts2.length);
let message = messagePrompts2[messageChoice];
await lib.discord.channels['@0.0.6'].messages.create({
channel_id: `${context.params.event.channel_id}`,
content: `${message}`,
});
}