galactic-bot/structure/moderation/infractions/Strike.js

51 lines
1.2 KiB
JavaScript
Raw Normal View History

const { Infraction } = require('../interfaces/');
class StrikeInfraction extends Infraction {
constructor(client, opts = {}) {
super(client, {
type: 'STRIKE',
targetType: 'user',
message: opts.message,
executor: opts.executor.user,
target: opts.target.user,
reason: opts.reason || 'N/A',
guild: opts.guild,
channel: opts.channel,
silent: opts.silent,
color: 0xffe15c,
dictionary: {
past: 'striked',
present: 'strike'
},
points: opts.points,
expiration: opts.expiration,
data: opts.data
});
this.client = client;
this.member = opts.target;
}
async execute() {
await this.handle();
return this._succeed();
}
2020-07-28 22:40:15 +02:00
verify() {
const missing = this.guild._checkPermissions(this.message, 'command:strike');
if(missing.length > 0) {
return super._fail('C_SLOWMODE_INSUFFICIENTPERMISSIONS');
}
return super._verify();
}
}
module.exports = StrikeInfraction;