From fe3cdb8991c001e6cc593d67d13b3d63a22e58b0 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Fri, 4 Jan 2019 14:49:15 +0100 Subject: [PATCH] OWNED --- commands/hidden/owned.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 commands/hidden/owned.js diff --git a/commands/hidden/owned.js b/commands/hidden/owned.js new file mode 100644 index 00000000..5f527103 --- /dev/null +++ b/commands/hidden/owned.js @@ -0,0 +1,23 @@ +const { Command } = require('discord-akairo'); + +class OwnedCommand extends Command { + constructor() { + super('owned', { + aliases: ['owned'], + category: 'general', + description: { + content: 'OWNED', + usage: '', + examples: [''] + } + }); + } + + async exec(message) { + let ownedMessage = ['TROLOLOLO OWNED EPIC STYLE', 'Owned noob', 'HAHA BRO YOU JUST GOT OOOOOOOOWNED HAHAHAHAHHAHA NOOOB NOOOOB NOOOB OWNED NOOB<:youngtroll:488559163832795136>', ' op op op owned epic style ']; + ownedMessage = ownedMessage[Math.floor( Math.random() * ownedMessage.length )]; + message.channel.send(ownedMessage); + } +} + +module.exports = OwnedCommand; \ No newline at end of file