2021-11-18 18:56:42 +01:00
|
|
|
const { MessageEmbed } = require("discord.js");
|
2022-01-31 20:01:40 +01:00
|
|
|
const tnd = require("../../util/Data/tnd.json");
|
2021-11-18 18:56:42 +01:00
|
|
|
module.exports = {
|
|
|
|
name: "truth",
|
|
|
|
description: "Gives a random question that has to be answered truthfully",
|
|
|
|
run: async (client, interaction, args) => {
|
|
|
|
const embed = new MessageEmbed()
|
2022-01-31 20:01:40 +01:00
|
|
|
.setAuthor({
|
|
|
|
name: interaction.user.tag,
|
|
|
|
iconURL: interaction.user.displayAvatarURL({ dyamic: true }),
|
|
|
|
})
|
2022-02-03 23:08:59 +01:00
|
|
|
.setTitle(tnd.truth[Math.round(Math.random() * tnd.truth.length)])
|
2021-11-18 18:56:42 +01:00
|
|
|
.setColor(client.color)
|
2022-01-31 20:01:40 +01:00
|
|
|
.setFooter({
|
|
|
|
text: `Made by ${client.author}`,
|
|
|
|
iconURL: client.user.displayAvatarURL(),
|
|
|
|
})
|
2021-11-18 18:56:42 +01:00
|
|
|
.setTimestamp();
|
|
|
|
interaction.followUp({ embeds: [embed] });
|
|
|
|
},
|
|
|
|
};
|