mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 21:24:59 +05:00
25 lines
No EOL
549 B
JavaScript
25 lines
No EOL
549 B
JavaScript
const Command = require("../../base/Command.js");
|
|
|
|
class Flip extends Command {
|
|
constructor (client) {
|
|
super(client, {
|
|
name: "flip",
|
|
dirname: __dirname,
|
|
enabled: true,
|
|
guildOnly: false,
|
|
aliases: [ "dice", "coin" ],
|
|
memberPermissions: [],
|
|
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS" ],
|
|
nsfw: false,
|
|
ownerOnly: false,
|
|
cooldown: 2000
|
|
});
|
|
}
|
|
|
|
async run (message) {
|
|
const isHeads = Math.random() > 0.5;
|
|
isHeads ? message.sendT("fun/flip:HEADS") : message.sendT("fun/flip:TAILS");
|
|
}
|
|
};
|
|
|
|
module.exports = Flip; |