summaryrefslogtreecommitdiff
path: root/server/src/commands/bot/Sin.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/commands/bot/Sin.ts')
-rw-r--r--server/src/commands/bot/Sin.ts35
1 files changed, 35 insertions, 0 deletions
diff --git a/server/src/commands/bot/Sin.ts b/server/src/commands/bot/Sin.ts
new file mode 100644
index 0000000..66e1f2f
--- /dev/null
+++ b/server/src/commands/bot/Sin.ts
@@ -0,0 +1,35 @@
+import { Command } from 'discord-akairo';
+import { Message } from 'discord.js';
+import { colour } from '../../Config';
+import { stripIndents } from 'common-tags';
+
+export default class SinBot extends Command {
+ public constructor() {
+ super('sin', {
+ aliases: ['sin'],
+ category: 'bot',
+ description: {
+ content: 'Will get you more information about Sin, the lead developer.',
+ usage: '',
+ examples: [
+ ''
+ ]
+ },
+ ratelimit: 3
+ });
+ }
+
+ public exec(msg: Message): Promise<Message> {
+ const embed = this.client.util.embed()
+ .setColor(colour)
+ .addField('Sin\'s Stuff', stripIndents`
+ 💎 [GitHub](https://github.com/8cy)
+ 🎀 [NPM](https://www.npmjs.com/~sinny)
+ 🎨 [Twitter](https://twitter.com/__cpuid)
+ 🎁 [Website](https://kyzer.co)
+ ✨ [YouTube](https://youtube.com/s1nny)
+ 🎐 [Top.gg Vote](https://discordbots.org/bot/699473263998271489/vote)
+ `, false)
+ return msg.channel.send(embed);
+ }
+} \ No newline at end of file