Unflip Command

This commit is contained in:
Dragon Fire
2019-07-14 16:15:25 -04:00
parent 378c75907a
commit 97f886693f
3 changed files with 22 additions and 4 deletions
+17
View File
@@ -0,0 +1,17 @@
const Command = require('../../structures/Command');
module.exports = class UnflipCommand extends Command {
constructor(client) {
super(client, {
name: 'unflip',
group: 'single',
memberName: 'unflip',
description: 'Unflips a flipped table.',
patterns: [/\(╯°□°)╯︵ ┻━┻/i]
});
}
run(msg) {
return msg.say('┬─┬ ( ゜-゜ノ)');
}
};