const { EmbedBuilder } = require('discord.js'); const Zalgo = require('to-zalgo') module.exports = { name: 'zalgo', aliases: ['zlg'], description: 'Convertissez vos textes en Zalgo', utilisation: 'zalgo ', emote: '🔤', category: 'utils', 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()]} ) } }