mirror of
https://github.com/arthur-pbty/gestion.git
synced 2026-06-03 15:07:26 +02:00
9bd39c69ca
sinon il y a pleins de truc comme les anti raid , des coorectif ect
27 lines
853 B
JavaScript
27 lines
853 B
JavaScript
const { EmbedBuilder } = require('discord.js');
|
|
|
|
module.exports = {
|
|
name: 'rickroll',
|
|
description: 'Never gonna give you up.',
|
|
emote: '😂',
|
|
utilisation: 'rickroll ',
|
|
category: 'game',
|
|
|
|
async execute(message, args, client) {
|
|
const roll = [
|
|
"Never gonna give you up",
|
|
"Never gonna let you down",
|
|
"Never gonna run around and desert you",
|
|
"Never gonna make you cry",
|
|
"Never gonna say goodbye",
|
|
"Never gonna tell a lie and hurt you",
|
|
];
|
|
const rick = roll[Math.floor(Math.random() * roll.length)];
|
|
|
|
const embed = new EmbedBuilder()
|
|
.setTitle(`😂・${rick}`)
|
|
.setImage('https://i.pinimg.com/originals/88/82/bc/8882bcf327896ab79fb97e85ae63a002.gif');
|
|
|
|
message.reply({ embeds: [embed] });
|
|
},
|
|
}; |