c'mon we all know we want blahaj in our lives
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});//default command is "!blahaj"
let blahaj = [
`https://m.media-amazon.com/images/I/71HsbI2pSML._SL1200_.jpg`,
`https://www.brandinginasia.com/wp-content/uploads/2021/12/IKEA-The-Legend-Of-BLA%CC%8AHAJ-%E3%83%95%E3%82%99%E3%83%AD%E3%83%BC%E3%83%8F%E3%82%A4%E3%81%AE%E4%BC%9D%E8%AA%AC.jpg`,
`https://www.ikea.com/in/en/images/products/blahaj-soft-toy-shark__0710175_pe727378_s5.jpg`,
`https://cdni.rt.com/files/2021.09/article/6152cadf85f540791510929b.jpg`,
`https://pbs.twimg.com/media/FFskr4XVQAA1AAZ?format=jpg&name=large`,
`https://media.womensweekly.com.sg/public/2021/10/1-36.png`,
`https://preview.redd.it/1zbany1f7u471.jpg?auto=webp&s=6f526631cf5ef56ef9b140d782ea9edeb6f2ac3c`
]
let blahajLength = blahaj.length
let blahajPrompts = Math.floor(Math.random() * blahajLength)
let blahajImage = blahaj[blahajPrompts]
await lib.discord.channels['@0.3.1'].messages.create({
channel_id: `${context.params.event.channel_id}`,
content: ``,
embed: {
title: ``,
author: {
name: `${context.params.event.author.username}#${context.params.event.author.discriminator}`,
icon_url: `https://cdn.discordapp.com/avatars/${context.params.event.author.id}/${context.params.event.author.avatar}.png`,
},
description: `Yay! you found BLAHAJ!! ๐`,
color: 0xb67afb,
image: {
url: blahajImage
}
}
});