mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
17 lines
361 B
JavaScript
17 lines
361 B
JavaScript
const Command = require('../../structures/commands/AutoReply');
|
|
|
|
module.exports = class UnflipCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'unflip',
|
|
group: 'auto',
|
|
description: 'Unflips a table.',
|
|
patterns: [/\(╯°□°(\)|))╯︵ ┻━┻/i]
|
|
});
|
|
}
|
|
|
|
generateText() {
|
|
return '┬─┬ノ( º _ ºノ)';
|
|
}
|
|
};
|