Halloween Is Here!!, Lets Be A Vampire And Bite Some Innocent People's
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
module.exports = async (event, context) => {
if (event.content.toLowerCase().startsWith(`!bite`)) {
const args = event.content.split(' ').slice(1);
await lib.discord.channels['@0.0.3'].messages.create({
channel_id: `${context.params.event.channel_id}`,
content: '',
embed: {
title: ``,
description: `The Vampire <@${context.params.event.author.id}> Is About To Kill ${context.params.event.mentions[0].username} !!`,
type: 'gifv',
color: 0x0000,
image: {
height: 297,
width: 580,
url: `https://c.tenor.com/WTiTFc1Q1NUAAAAM/davina-danielle-campbell.gif`,
},
},
});
}
};