hullcss-discord-bot/commands/fun/gorb.js

40 lines
969 B
JavaScript
Raw Normal View History

2022-05-10 12:22:04 +01:00
const discord = require("discord.js");
module.exports = {
name: "gorb",
aliases: [''],
/**
*
* @param {Client} client
* @param {Message} message
* @param {String[]} args
*/
run: async (client, message, args) => {
2022-05-13 19:26:17 +01:00
if(!args[0]){
message.channel.send({ files: ['./images/gorb.jpg'] })
}
if(args[0] === 'cs'){
message.channel.send({ files: ['./images/gorbcs.jpg'] })
}
2022-05-13 19:30:14 +01:00
if(args[0] === 'party'){
2022-05-13 19:31:04 +01:00
message.channel.send({ files: ['./images/gorbcelebration.png'] })
}
if(args[0] === 'christmas'){
message.channel.send({ files: ['./images/gorbchristmas.png'] })
2022-05-13 19:30:14 +01:00
}
2022-05-13 19:31:41 +01:00
if(args[0] === 'storm'){
message.channel.send({ files: ['./images/gorbstorm.png'] })
}
2022-05-24 10:02:24 +01:00
if(args[0] == 'large'){
message.channel.send({ files: ['./images/gorblarge.png'] })
}
2022-05-13 19:31:41 +01:00
2022-05-10 12:22:04 +01:00
},
};