This commit is contained in:
2025-05-03 11:52:15 +02:00
parent 768355432a
commit 12a01022ed
20 changed files with 0 additions and 984 deletions

View File

@ -1,17 +0,0 @@
import { SlashCommandBuilder } from "discord.js";
import { Command } from "../discordBot/types";
export const boredBotCommands = [
new SlashCommandBuilder()
.setName(Command.Roll)
.setDescription("Roll dice (e.g. 'd20', '6d12-4', '2d8 + 1d6+4')")
.addStringOption((option) =>
option
.setName("input")
.setDescription("The dice you want to roll")
.setRequired(true),
),
new SlashCommandBuilder()
.setName(Command.Help)
.setDescription("Displays a list of available commands."),
];