initial commit

This commit is contained in:
Hex Ripley
2025-04-04 13:58:24 -07:00
commit 704c7c4741
3 changed files with 245 additions and 0 deletions

25
README.md Normal file
View File

@@ -0,0 +1,25 @@
# Discord Dice Bot
A Discord bot that handles both traditional dice rolling and the Genesys/Star Wars dice system.
## Features
- Traditional dice rolling using standard notation (e.g., `/roll 2d6 + 1d8`)
- Genesys/Star Wars dice system support (e.g., `/genesys 2dg + 1dy`)
- Supports dice types: g (green), p (purple), b (blue), k (black), r (red), y (yellow)
- Calculates net Success/Failure and Advantage/Disadvantage
## Setup
1. Create a `.env` file with your Discord bot token:
```
DISCORD_TOKEN=your_token_here
```
2. Install dependencies:
```bash
pip install -r requirements.txt
```
3. Run the bot:
```bash
python bot.py
```