Skip to content

Commit

Permalink
[Alignment] 1.0.0 Generate alignment charts based on chat history
Browse files Browse the repository at this point in the history
- Generate an alignment chart randomly picked from previous members in the channel.
- Pick specific slots for who goes where in the alignment chart.
- Customize the display to fit your server's theme.
  • Loading branch information
TrustyJAID committed Dec 2, 2024
1 parent ab2be49 commit daebffb
Show file tree
Hide file tree
Showing 6 changed files with 654 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ TrustyJAID's Cogs for [Red-DiscordBot](https://github.com/Cog-Creators/Red-Disc
|-----------------|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
| AddImage | 1.3.5 | <details><summary>Add images for direct upload per guild and globally.</summary>Add image for the bot to directly upload similar to alias.</details> | TrustyJAID |
| AdventureAlert | 1.5.1 | <details><summary>Receive notifications from adventure activities!</summary>Receive notifications from adventure activities!</details> | TrustyJAID |
| Bingo | 1.0.0 | <details><summary>Play Bingo!</summary>Generate an alignment chart from users!</details> | TrustyJAID |
| Alignment | 1.0.0 | <details><summary>Create an alignment chart!</summary>Generate an alignment chart from users!</details> | TrustyJAID |
| APNGFilter | 1.0.1 | <details><summary>Automatically filter animated PNG's.</summary>Automatically filter animated PNG's.</details> | TrustyJAID, Sinbad, and Soulrift |
| Automod | 1.0.4 | <details><summary>Discord Automod</summary>A cog to interact with Discord Automod.</details> | TrustyJAID |
| Badges | 1.2.0 | <details><summary>Create your own badge!</summary>Create your own badge with your discord info.</details> | TrustyJAID |
Expand Down
12 changes: 12 additions & 0 deletions alignment/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import json
from pathlib import Path

from .alignment import Alignments

with open(Path(__file__).parent / "info.json") as fp:
__red_end_user_data_statement__ = json.load(fp)["end_user_data_statement"]


async def setup(bot):
cog = Alignments(bot)
await bot.add_cog(cog)
Loading

0 comments on commit daebffb

Please sign in to comment.