mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-22 10:19:11 +02:00
Framework Rewrite
This commit is contained in:
@@ -1,21 +0,0 @@
|
||||
const Command = require('../../structures/commands/AutoReply');
|
||||
|
||||
module.exports = class NoUCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'no-u',
|
||||
aliases: ['no-you'],
|
||||
group: 'auto',
|
||||
memberName: 'no-u',
|
||||
description: 'no u',
|
||||
patterns: [/^n+o+ u+$/i]
|
||||
});
|
||||
}
|
||||
|
||||
generateText(fromPattern) {
|
||||
if (!fromPattern) return 'no u';
|
||||
const chance = Boolean(Math.floor(Math.random() * 2));
|
||||
if (chance) return null;
|
||||
return 'no u';
|
||||
}
|
||||
};
|
||||
@@ -1,17 +0,0 @@
|
||||
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 '┬─┬ ノ( ゜-゜ノ)';
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user