1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/rpgpack/commands/__init__.py

35 lines
987 B
Python
Raw Normal View History

2019-11-11 09:34:05 +00:00
# Imports go here!
from .roll import RollCommand
from .dice import DiceCommand
from .dndactive import DndactiveCommand
from .dndinfo import DndinfoCommand
from .dndnew import DndnewCommand
from .dndedit import DndeditCommand
from .dndroll import DndrollCommand
from .dnditem import DnditemCommand
from .dndspell import DndspellCommand
2020-02-19 17:14:39 +00:00
from .testhealth import TesthealthCommand
from .testfaction import TestfactionCommand
from .dndnewbattle import DndnewbattleCommand
2020-02-22 01:16:54 +00:00
from .dndactivebattle import DndactivebattleCommand
2019-11-11 09:34:05 +00:00
# Enter the commands of your Pack here!
available_commands = [
RollCommand,
DiceCommand,
DndactiveCommand,
DndinfoCommand,
DndnewCommand,
DndeditCommand,
DndrollCommand,
DnditemCommand,
DndspellCommand,
2020-02-19 17:14:39 +00:00
TesthealthCommand,
TestfactionCommand,
2020-02-22 01:16:54 +00:00
DndnewbattleCommand,
DndactivebattleCommand,
2019-11-11 09:34:05 +00:00
]
# Don't change this, it should automatically generate __all__
__all__ = [command.__name__ for command in available_commands]