2022-05-10 12:22:04 +01:00
|
|
|
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-07-04 18:52:11 +01:00
|
|
|
message.channel.send({ files: ['./images/gorbcelebration.PNG'] })
|
2022-05-13 19:31:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(args[0] === 'christmas'){
|
2022-07-04 18:52:11 +01:00
|
|
|
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'){
|
2022-07-04 18:52:11 +01:00
|
|
|
message.channel.send({ files: ['./images/gorbstorm.PNG'] })
|
2022-05-13 19:31:41 +01:00
|
|
|
}
|
|
|
|
|
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
|
|
|
},
|
|
|
|
};
|