feat: Add RPG cog with character and inventory features

Sets up RPG system as a Redbot cog with core mechanics
Implements character creation, class selection, and stat management
Adds action commands for attacking and healing
Provides inventory and shop functionality for item management
Introduces interactive UI menus for user engagement
This commit is contained in:
2025-09-11 17:23:45 -04:00
parent 859ac84b68
commit e0958f6f2a
9 changed files with 756 additions and 0 deletions

6
rpg/__init__.py Normal file
View File

@@ -0,0 +1,6 @@
from .rpg import RPG
async def setup(bot):
cog = RPG(bot)
await bot.add_cog(cog)
await bot.add_cog(cog.commands)