galactic-bot/structure/interfaces/Command.js

48 lines
1.2 KiB
JavaScript
Raw Normal View History

2020-04-08 18:08:46 +02:00
const Component = require('./Component.js');
class Command extends Component {
constructor(manager, opts = {}) {
2020-04-08 18:08:46 +02:00
if(!opts) return null;
super(manager, {
2020-04-08 18:08:46 +02:00
id: opts.name,
type: 'command',
disabled: opts.disabled || false,
guarded: opts.guarded || false
});
this.manager = manager;
2020-04-08 18:08:46 +02:00
this.name = opts.name;
this.module = opts.module;
this.aliases = opts.aliases || [];
this.description = opts.description || "A basic command.";
this.examples = opts.examples || [];
this.usage = opts.usage || null;
this.restricted = Boolean(opts.restricted);
this.archivable = opts.archivable === undefined ? false : Boolean(opts.archivable);
this.guildOnly = Boolean(opts.guildOnly);
this.arguments = opts.arguments || [];
2020-04-08 18:08:46 +02:00
this.clientPermissions = opts.clientPermissions || [];
this.memberPermissions = opts.memberPermissions || [];
this.throttling = opts.throttling || {
usages: 5,
duration: 10
};
this._throttles = new Map();
}
get moduleResolveable() {
return `${this.module.id}:${this.id}`;
}
2020-04-08 16:27:34 +02:00
}
module.exports = Command;