1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54: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 aiohttp
import sortedcontainers import sortedcontainers
from royalnet.commands import * from royalnet.commands import *
from royalnet.utils import parse_5etools_entry from ..utils import parse_5etools_entry
class DnditemCommand(Command): class DnditemCommand(Command):

View file

@ -1,8 +1,8 @@
import typing
import aiohttp import aiohttp
import sortedcontainers import sortedcontainers
from royalnet.commands import * 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): class DndspellCommand(Command):

View file

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