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

Move dnditem and dndspell to the rpg pack

This commit is contained in:
Steffo 2019-10-28 00:12:17 +01:00
parent 155e024e67
commit daecbc9f8c
4 changed files with 5 additions and 5 deletions

View file

@ -1,8 +1,7 @@
import typing
import aiohttp
import sortedcontainers
from royalnet.commands import *
from royalnet.utils import parse_5etools_entry
from ..utils import parse_5etools_entry
class DnditemCommand(Command):

View file

@ -1,8 +1,8 @@
import typing
import aiohttp
import sortedcontainers
from royalnet.commands import *
from royalnet.utils import parse_5etools_entry, ordinalformat, andformat
from royalnet.utils import ordinalformat, andformat
from ..utils import parse_5etools_entry
class DndspellCommand(Command):

View file

@ -1,3 +1,4 @@
from .dndproficiencytype import DndProficiencyType
from .parse5etoolsentry import parse_5etools_entry
__all__ = ["DndProficiencyType"]
__all__ = ["DndProficiencyType", "parse_5etools_entry"]