Framework Rewrite

This commit is contained in:
Dragon Fire
2021-06-05 12:17:33 -04:00
parent 5c9f237321
commit 7917766ce3
48 changed files with 1101 additions and 294 deletions
-21
View File
@@ -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';
}
};
-17
View File
@@ -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 '┬─┬ ( ゜-゜ノ)';
}
};