mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-14 00:08:06 +02:00
Random GIFs
This commit is contained in:
@@ -1,5 +1,12 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const { stripIndents } = require('common-tags');
|
||||
const gifs = [
|
||||
'https://i.imgur.com/gkdDk4P.gif',
|
||||
'https://i.imgur.com/BjFCGGx.gif',
|
||||
'https://i.imgur.com/XJkJ9UR.gif',
|
||||
'https://i.imgur.com/H2XpKr6.gif',
|
||||
'https://i.imgur.com/McM6VYZ.gif'
|
||||
];
|
||||
|
||||
module.exports = class EvolveCommand extends Command {
|
||||
constructor(client) {
|
||||
@@ -22,7 +29,7 @@ module.exports = class EvolveCommand extends Command {
|
||||
const { user } = args;
|
||||
return msg.say(stripIndents`
|
||||
**${user.username}** *is evolving!*
|
||||
https://i.imgur.com/gkdDk4P.gif
|
||||
${gifs[Math.floor(Math.random() * gifs.length)]}
|
||||
`);
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user