With this command you can let you bot ask would you rather questions. Feel free to add more wyr sentences
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
// To add more answers for your command, simply add them to this list!
let messagePrompts = [
`Would you rather have more time\n**or**\nmore money?`,
`Would you rather have a rewind button\n**or**\na pause button on your life?`,
`Would you rather be able to talk with the animals\n**or**\nspeak all foreign languages?`,
`Would you rather win the lottery\n**or**\nlive twice as long?`,
`Would you rather be without internet for a week\n**or**\nwithout your phone?`,
`Would you rather meet George Washington\n**or**\nthe current president?`,
`Would you rather lose your vision\n**or**\nyour hearing?`,
`Would you rather listen to music from the ’70s\n**or**\nmusic from today?`,
`Would you rather become someone else\n**or**\njust stay you?`,
`Would you rather be Batman\n**or**\nSpiderman?`,
`Would you rather be stuck on a broken ski lift\n**or**\nin a broken elevator?`,
`For your birthday, would you rather receive cash\n**or**\ngifts?`,
`Would you rather go to a movie\n**or**\nto dinner alone?`,
`Would you rather always say everything on your mind\n**or**\nnever speak again?`,
`Would you rather make a phone call\n**or**\nsend a text?`,
`Would you rather read an awesome book\n**or**\nwatch a good movie?`,
`Would you rather be the most popular person at work\n**or**\nin school the smartest?`,
`Would you rather put a stop to war\n**or**\nend world hunger?`,
`Would you rather spend the night in a luxury hotel room\n**or**\ncamping surrounded by beautiful scenery?`,
`Would you rather explore space\n**or**\nthe ocean?`,
`Would you rather go deep-sea diving\n**or**\nbungee jumping?`,
`Would you rather be a kid your whole life\n**or**\nan adult your whole life?`,
`Would you rather go on a cruise with friends\n**or**\nwith your spouse?`,
`Would you rather lose your keys\n**or**\nyour cell phone?`,
`Would you rather eat a meal of cow tongue\n**or**\noctopus?`,
`Would you rather have x-ray vision\n**or**\nmagnified hearing?`,
`Would you rather work in a group\n**or**\nwork alone?`,
`Would you rather be stuck on an island alone\n**or**\nwith someone who talks incessantly?`,
`Would you rather be too hot\n**or**\ntoo cold?`,
`When you’re old, would you rather die before\n**or**\nafter your spouse?`,
`Would you rather be the youngest\n**or**\the oldest sibling?`,
];
let messageChoice = Math.floor(Math.random() * messagePrompts.length);
let message = messagePrompts[messageChoice];
await lib.discord.channels['@0.3.2'].messages.create({
channel_id: `${context.params.event.channel_id}`,
content: '',
tts: false,
embeds: [
{
type: 'rich',
title: '',
description: `<:star:942181056201768990> ${message} `,
color: 0xcdebff,
},
],
});