galactic-bot/structure/moderation/infractions/Note.js
2020-07-30 05:41:17 -07:00

38 lines
889 B
JavaScript

const { Infraction } = require('../interfaces/');
class NoteInfraction extends Infraction {
constructor(client, opts = {}) {
super(client, {
type: 'NOTE',
targetType: 'user',
executor: opts.executor.user,
target: opts.target.user,
reason: opts.reason || 'N/A',
guild: opts.guild,
channel: opts.channel,
color: 0xEBEBEB,
silent: opts.silent,
dictionary: {
past: 'noted',
present: 'note'
},
points: opts.points,
expiration: opts.expiration,
data: opts.data
});
this.client = client;
this.member = opts.target;
}
async execute() {
await this.handle();
return this._succeed();
}
}
module.exports = NoteInfraction;