discord.js-game
Version:
Discord games is a powerful npm package with a collection of minigames for your discord bot
23 lines (20 loc) • 501 B
Markdown
# **🔖 Would You Rather**
```js
const { WouldYouRather } = require('discord-gamecord');
const Game = new WouldYouRather({
message: message,
isSlashGame: false,
embed: {
title: 'Would You Rather',
color: '#5865F2',
},
buttons: {
option1: 'Option 1',
option2: 'Option 2',
},
timeoutTime: 60000,
errMessage: 'Unable to fetch question data! Please try again.',
playerOnlyMessage: 'Only {player} can use these buttons.'
});
Game.startGame();
```