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