mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-18 04:40:59 -05:00
22 lines
720 B
TypeScript
22 lines
720 B
TypeScript
import Discord from 'discord.js';
|
|
import TClient from '../client.js';
|
|
import Punish from '../components/Punish.js';
|
|
export default class Ban {
|
|
static run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
|
|
Punish(client, interaction, 'ban');
|
|
}
|
|
static data = new Discord.SlashCommandBuilder()
|
|
.setName('ban')
|
|
.setDescription('Ban a member from the server')
|
|
.addUserOption(x=>x
|
|
.setName('member')
|
|
.setDescription('Which member to ban?')
|
|
.setRequired(true))
|
|
.addStringOption(x=>x
|
|
.setName('time')
|
|
.setDescription('How long the ban will be?'))
|
|
.addStringOption(x=>x
|
|
.setName('reason')
|
|
.setDescription('Reason for the ban'))
|
|
}
|