1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-30 05:01:00 -04:00
Daggerbot-TS/src/commands/ban.ts

20 lines
688 B
TypeScript
Raw Normal View History

import Discord,{SlashCommandBuilder} from 'discord.js';
2023-04-14 06:47:58 -04:00
import TClient from '../client.js';
2022-11-13 19:18:15 -05:00
export default {
2023-03-05 05:04:10 -05:00
run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
client.punish(client, interaction, 'ban');
},
data: new SlashCommandBuilder()
.setName('ban')
.setDescription('Ban a member from the server')
.addUserOption((opt)=>opt
.setName('member')
.setDescription('Which member to ban?')
.setRequired(true))
.addStringOption((opt)=>opt
.setName('time')
.setDescription('How long the ban will be?'))
.addStringOption((opt)=>opt
.setName('reason')
.setDescription('Reason for the ban'))
2022-11-13 19:18:15 -05:00
}