You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/hidden/owned.js

23 lines
747 B
JavaScript

6 years ago
const { Command } = require('discord-akairo');
class OwnedCommand extends Command {
constructor() {
super('owned', {
aliases: ['owned'],
category: 'hidden',
6 years ago
description: {
content: 'OWNED',
usage: '',
examples: ['']
}
});
}
async exec(message) {
5 years ago
let ownedMessage = ['TROLOLOLO OWNED EPIC STYLE', 'Owned noob', 'HAHA BRO YOU JUST GOT OOOOOOOOWNED HAHAHAHAHHAHA NOOOB NOOOOB NOOOB OWNED NOOB<:youngtroll:488559163832795136>', '<a:op:516341492982218756> op op op owned epic style <a:op:516341492982218756>', 'HAHAHA BRO YOU HAVE BEEN OWNED TROLL BRO STYLE'];
6 years ago
ownedMessage = ownedMessage[Math.floor( Math.random() * ownedMessage.length )];
message.channel.send(ownedMessage);
}
}
module.exports = OwnedCommand;