Skip to content

Commit

Permalink
feat(fun): add more fun commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyameliaaaa committed Oct 9, 2021
1 parent 5f2cb58 commit a002d5d
Show file tree
Hide file tree
Showing 5 changed files with 76 additions and 0 deletions.
15 changes: 15 additions & 0 deletions commands/fun/hromomento.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
name: 'hromomento',
description: 'tenemos un qran bro momento',
async execute(client, message) {
message.channel.send({
embeds: [{
title: 'hro momento',
image: {
url: 'https://cdn.discordapp.com/attachments/713675042143076356/896324230302535700/GAS_Bot-HBroMomento-896324226049527838.gif'
},
color: client.config.color
}]
});
}
};
15 changes: 15 additions & 0 deletions commands/fun/huh.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
name: 'huh',
description: '<:thinkinH:805862278766395483>',
async execute(client, message) {
message.channel.send({
embeds: [{
title: 'huh',
image: {
url: 'https://cdn.discordapp.com/attachments/713675042143076356/896325444029267998/GAS_Bot-Huh-896325442695479297.png'
},
color: client.config.color
}]
});
}
};
15 changes: 15 additions & 0 deletions commands/fun/juan.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
name: 'juan',
description: '<:Juan:773465802682138634>',
async execute(client, message) {
message.channel.send({
embeds: [{
title: 'juan',
image: {
url: 'https://cdn.discordapp.com/attachments/713675042143076356/896326660826206218/GAS_Bot-Juan-896326625355001896.png'
},
color: client.config.color
}]
});
}
};
16 changes: 16 additions & 0 deletions commands/fun/tank.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module.exports = {
name: 'tank',
description: 'aden said <:NoSeventhLetter:721649657146769449>, use this',
async execute(client, message) {
message.channel.send({
embeds: [{
title: 'the ultimate g destroyer',
image: {
url: 'https://cdn.discordapp.com/attachments/713675042143076356/896324390252322826/GAS_Bot-Tank-896324388658499584.png'
},
color: client.config.color
}]
});
}
};

15 changes: 15 additions & 0 deletions commands/fun/toilet.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
name: 'toilet',
description: 'polish toilet',
async execute(client, message) {
message.channel.send({
embeds: [{
title: 'polish toilet',
image: {
url: 'https://cdn.discordapp.com/attachments/713675042143076356/896325154232221706/GAS_Bot-Toilet-896325079493914634.gif'
},
color: client.config.color
}]
});
}
};

0 comments on commit a002d5d

Please sign in to comment.