From fc36b6dfceb985485b4fd5e1364fc3768f2cd67b Mon Sep 17 00:00:00 2001
From: Supositware <loic.bersier1@gmail.com>
Date: Mon, 25 Mar 2019 00:51:33 +0100
Subject: [PATCH] About bot command

---
 commands/utility/about.js | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)
 create mode 100644 commands/utility/about.js

diff --git a/commands/utility/about.js b/commands/utility/about.js
new file mode 100644
index 0000000..1431567
--- /dev/null
+++ b/commands/utility/about.js
@@ -0,0 +1,29 @@
+const { Command } = require('discord-akairo');
+const { MessageEmbed } = require('discord.js');
+
+class aboutCommand extends Command {
+	constructor() {
+		super('about', {
+			aliases: ['about'],
+			category: 'utility',
+			description: {
+				content: 'About me ( the bot )',
+				usage: '',
+				examples: ['']
+			}
+		});
+	}
+
+	async exec(message) {
+		const aboutEmbed = new MessageEmbed()
+			.setColor('#ff9900')
+			.setAuthor('Supositware#1616', this.client.user.avatarURL)
+			.setTitle('About me')
+			.setURL('https://gitlab.com/LoicBersier/DiscordBot')
+			.setDescription('This bot is made using [discord.js](https://github.com/discordjs/discord.js) & [Discord-Akairo](https://github.com/discord-akairo/discord-akairo)\nHelp command from [hoshi](https://github.com/1Computer1/hoshi) And thanks to Tina the Cyclops girl#0064 for inspiring me for making this bot!');
+				
+		message.channel.send(aboutEmbed);
+	}
+}
+
+module.exports = aboutCommand;
\ No newline at end of file