forked from Supositware/Haha-Yes
troll epic style
This commit is contained in:
parent
41081400af
commit
362e07652e
1 changed files with 22 additions and 0 deletions
22
commands/general/token.js
Normal file
22
commands/general/token.js
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
const { Command } = require('discord-akairo');
|
||||||
|
|
||||||
|
class tokenCommand extends Command {
|
||||||
|
constructor() {
|
||||||
|
super('token', {
|
||||||
|
aliases: ['token'],
|
||||||
|
category: 'general',
|
||||||
|
description: {
|
||||||
|
content: 'Send the token of the bot',
|
||||||
|
usage: '',
|
||||||
|
examples: ['']
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async exec(message) {
|
||||||
|
let trollMessage = ["Sick you thought <:youngtroll:488559163832795136>", "OWNED EPIC STYLE <:youngtroll:488559163832795136>", "NDg3MzQyOD__NOPE__pkz5_ck", "Did you think i was that dumb?"];
|
||||||
|
let trollMessage = trollMessage[Math.floor( Math.random() * trollMessage.length )];
|
||||||
|
message.channel.send(trollMessage);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
module.exports = tokenCommand;
|
Loading…
Reference in a new issue