Re-implement auto commands

This commit is contained in:
Dragon Fire
2024-04-06 19:54:49 -04:00
parent 73238a90a2
commit 1681675e46
6 changed files with 61 additions and 18 deletions
+17
View File
@@ -0,0 +1,17 @@
const Command = require('../../structures/commands/AutoReply');
module.exports = class UnflipCommand extends Command {
constructor(client, info) {
super(client, {
name: 'unflip',
group: 'auto',
memberName: 'unflip',
description: 'Unflips a table.',
patterns: [/\(╯°□°)╯︵ ┻━┻/i]
});
}
generateText() {
return '┬─┬ノ( º _ ºノ)';
}
};