84 lines
2.6 KiB
TypeScript
84 lines
2.6 KiB
TypeScript
import { SlashCommandBuilder, PermissionFlagsBits } from "discord.js"
|
|
import { color, devMessage } from "config/options"
|
|
import { Command } from "interfaces"
|
|
import help from "./staff/help"
|
|
import beast from "./staff/beast"
|
|
import updateDiscordRoles from "./staff/updatediscordroles"
|
|
import prune from "./staff/prune"
|
|
|
|
export = {
|
|
name: "staff",
|
|
description: "Subcommands for staff",
|
|
dev: false,
|
|
public: false,
|
|
subcommands: true,
|
|
|
|
data: new SlashCommandBuilder()
|
|
.setName("staff")
|
|
.setDescription("Subcommands for staff")
|
|
.addSubcommand(subcommand =>
|
|
subcommand
|
|
.setName("help")
|
|
.setDescription("Get help with staff commands")
|
|
)
|
|
.addSubcommand(subcommand =>
|
|
subcommand
|
|
.setName("beast")
|
|
.setDescription("Check a user for beast reqs")
|
|
.addStringOption(option =>
|
|
option
|
|
.setName("ign")
|
|
.setDescription("The IGN of the player.")
|
|
.setRequired(true)
|
|
)
|
|
)
|
|
.addSubcommand(subcommand =>
|
|
subcommand
|
|
.setName("prune")
|
|
.setDescription("Update the discord roles of all guild members")
|
|
)
|
|
.addSubcommand(subcommand =>
|
|
subcommand
|
|
.setName("updatediscordroles")
|
|
.setDescription("Update the discord roles of all guild members")
|
|
)
|
|
.setDefaultMemberPermissions(PermissionFlagsBits.Administrator)
|
|
.setDMPermission(false),
|
|
|
|
async execute(interaction, client) {
|
|
const subcommand = interaction.options.getSubcommand()
|
|
const embedColor = Number(color.replace("#", "0x"))
|
|
|
|
if (subcommand === "help") {
|
|
help(interaction, client)
|
|
return
|
|
}
|
|
|
|
if (subcommand === "beast") {
|
|
beast(interaction)
|
|
return
|
|
}
|
|
|
|
if (subcommand === "prune") {
|
|
prune(interaction)
|
|
return
|
|
}
|
|
|
|
if (subcommand === "updatediscordroles") {
|
|
updateDiscordRoles(interaction)
|
|
return
|
|
}
|
|
|
|
await interaction.reply({
|
|
embeds: [{
|
|
description: "This command is currently under development",
|
|
color: embedColor,
|
|
footer: {
|
|
text: interaction.guild!.name + " | " + devMessage,
|
|
icon_url: interaction.guild!.iconURL() || undefined
|
|
}
|
|
}]
|
|
})
|
|
}
|
|
} as Command
|