2023-10-13 15:04:11 +02:00
|
|
|
import { SlashCommandBuilder, EmbedBuilder } from "discord.js";
|
2023-09-13 21:12:45 +02:00
|
|
|
export default {
|
2022-11-09 14:44:05 +01:00
|
|
|
data: new SlashCommandBuilder()
|
2023-10-13 15:04:11 +02:00
|
|
|
.setName("help")
|
|
|
|
.setDescription("Afficher l'aide du serveur"),
|
|
|
|
async execute(interaction) {
|
2022-11-09 14:44:05 +01:00
|
|
|
await interaction.reply({
|
|
|
|
embeds: [
|
|
|
|
new EmbedBuilder()
|
2023-10-13 15:04:11 +02:00
|
|
|
.setTitle("Tuto AP LOL")
|
|
|
|
.setColor("#4f00fc")
|
|
|
|
.setDescription("Description, placeholder, tuto hahahaha"),
|
2022-11-09 14:44:05 +01:00
|
|
|
new EmbedBuilder()
|
2023-10-13 15:04:11 +02:00
|
|
|
.setTitle("SuItE Tuto AP LOL")
|
|
|
|
.setColor("#7500fc")
|
|
|
|
.setDescription(
|
|
|
|
"Suite Description, Suite placeholder, Suite tuto hahahaha",
|
|
|
|
),
|
2022-11-09 14:44:05 +01:00
|
|
|
new EmbedBuilder()
|
2023-10-13 15:04:11 +02:00
|
|
|
.setTitle("SuItE Tuto AP LOL")
|
|
|
|
.setColor("#9f00fc")
|
|
|
|
.setDescription(
|
|
|
|
"Suite Description, Suite placeholder, Suite tuto hahahaha",
|
|
|
|
),
|
2022-11-09 14:44:05 +01:00
|
|
|
new EmbedBuilder()
|
2023-10-13 15:04:11 +02:00
|
|
|
.setTitle("SuItE Tuto AP LOL")
|
|
|
|
.setColor("#c500fc")
|
|
|
|
.setDescription(
|
|
|
|
"Suite Description, Suite placeholder, Suite tuto hahahaha",
|
|
|
|
),
|
2022-11-09 14:44:05 +01:00
|
|
|
new EmbedBuilder()
|
2023-10-13 15:04:11 +02:00
|
|
|
.setTitle("SuItE Tuto AP LOL")
|
|
|
|
.setColor("#fc00f8")
|
|
|
|
.setDescription(
|
|
|
|
"Suite Description, Suite placeholder, Suite tuto hahahaha",
|
|
|
|
),
|
|
|
|
],
|
2023-09-30 08:29:50 +02:00
|
|
|
});
|
|
|
|
},
|
2023-10-13 15:04:11 +02:00
|
|
|
};
|