trop de truc pour tout ecrire

This commit is contained in:
VALOU3336
2024-02-29 18:57:43 +01:00
parent b1768e24bd
commit af836f4c1e
43 changed files with 2902 additions and 119 deletions
+21
View File
@@ -0,0 +1,21 @@
const { EmbedBuilder } = require('discord.js');
const Zalgo = require('to-zalgo')
module.exports = {
name: 'zalgo',
aliases: ['zlg'],
description: 'Convertissez vos textes en Zalgo',
usage: 'zalgo <text>',
async execute(message, args, client) {
message.channel.send({embeds: [ new EmbedBuilder()
.setAuthor({name: message.author.tag})
.setTitle(`Votre texte: ${args.join(" ")}`)
.setDescription(`${Zalgo(args.join(" "))}`)
.setFooter({ text: `${client.user.username}` })
.setTimestamp()]}
)
}
}