-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
38 additions
and
697 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +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= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
src/bots/abraham/AbrahamCharacterCog.py → src/bots/abraham/EdenLogosCharacterCog.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
from discord.ext import commands | ||
from cogs.CharacterCog import CharacterCog | ||
from cogs.LogosCharacterCog import LogosCharacterCog | ||
|
||
|
||
class AbrahamCharacterCog(CharacterCog): | ||
class EdenLogosCharacterCog(LogosCharacterCog): | ||
def __init__(self, bot: commands.bot) -> None: | ||
super().__init__(bot) | ||
|
||
|
||
def setup(bot: commands.Bot) -> None: | ||
bot.add_cog(AbrahamCharacterCog(bot)) | ||
bot.add_cog(EdenLogosCharacterCog(bot)) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +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= | ||
OPENAI_API_KEY= | ||
|
||
LOGOS_URL= |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from discord.ext import commands | ||
from cogs.CharacterGeneratorCog import CharacterGeneratorCog | ||
|
||
from cogs.GeneratorCog import GeneratorCog | ||
|
||
|
||
class EdenGeneratorCog(GeneratorCog): | ||
class EdenCharacterGeneratorCog(CharacterGeneratorCog): | ||
def __init__(self, bot: commands.bot) -> None: | ||
super().__init__(bot) | ||
|
||
|
||
def setup(bot: commands.Bot) -> None: | ||
bot.add_cog(EdenGeneratorCog(bot)) | ||
bot.add_cog(EdenCharacterGeneratorCog(bot)) |
Oops, something went wrong.