Skip to content

Commit

Permalink
dada does
Browse files Browse the repository at this point in the history
  • Loading branch information
genekogan committed Dec 18, 2023
1 parent fdbdce7 commit 69bf9c3
Show file tree
Hide file tree
Showing 6 changed files with 72 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/bots/dada/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
DISCORD_TOKEN=
MONGO_URI=
MONGO_DB_NAME=

EDEN_API_URL=
EDEN_API_KEY=
EDEN_API_SECRET=
EDEN_CHARACTER_ID=

ALLOWED_GUILDS=
ALLOWED_GUILDS_TEST=
ALLOWED_CHANNELS=

LOGOS_URL=
11 changes: 11 additions & 0 deletions src/bots/dada/EdenGeneratorCog.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from discord.ext import commands
from cogs.CharacterGeneratorCog import CharacterGeneratorCog


class EdenCharacterGeneratorCog(CharacterGeneratorCog):
def __init__(self, bot: commands.bot) -> None:
super().__init__(bot)


def setup(bot: commands.Bot) -> None:
bot.add_cog(EdenCharacterGeneratorCog(bot))
11 changes: 11 additions & 0 deletions src/bots/dada/EdenLogosCharacterCog.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from discord.ext import commands
from cogs.LogosCharacterCog import LogosCharacterCog


class EdenLogosCharacterCog(LogosCharacterCog):
def __init__(self, bot: commands.bot) -> None:
super().__init__(bot)


def setup(bot: commands.Bot) -> None:
bot.add_cog(EdenLogosCharacterCog(bot))
14 changes: 14 additions & 0 deletions src/bots/does/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
DISCORD_TOKEN=
MONGO_URI=
MONGO_DB_NAME=

EDEN_API_URL=
EDEN_API_KEY=
EDEN_API_SECRET=
EDEN_CHARACTER_ID=

ALLOWED_GUILDS=
ALLOWED_GUILDS_TEST=
ALLOWED_CHANNELS=

LOGOS_URL=
11 changes: 11 additions & 0 deletions src/bots/does/EdenGeneratorCog.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from discord.ext import commands
from cogs.CharacterGeneratorCog import CharacterGeneratorCog


class EdenCharacterGeneratorCog(CharacterGeneratorCog):
def __init__(self, bot: commands.bot) -> None:
super().__init__(bot)


def setup(bot: commands.Bot) -> None:
bot.add_cog(EdenCharacterGeneratorCog(bot))
11 changes: 11 additions & 0 deletions src/bots/does/EdenLogosCharacterCog.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from discord.ext import commands
from cogs.LogosCharacterCog import LogosCharacterCog


class EdenLogosCharacterCog(LogosCharacterCog):
def __init__(self, bot: commands.bot) -> None:
super().__init__(bot)


def setup(bot: commands.Bot) -> None:
bot.add_cog(EdenLogosCharacterCog(bot))

0 comments on commit 69bf9c3

Please sign in to comment.