This commit is contained in:
2025-05-03 11:46:44 +02:00
parent a6dd54edd9
commit d7c3ea5c7d
4576 changed files with 440347 additions and 0 deletions

17
src/boredBot/commands.ts Normal file
View File

@ -0,0 +1,17 @@
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."),
];