matteoferla/DnD-battler

View on GitHub
DnD_battler/creature/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
from ._utils import CreatureUtils
from ._action import CreatureAction
from copy import deepcopy

class Creature(CreatureAction, CreatureUtils):
    """
    Creature class handles the creatures and their actions and some interactions with the encounter.
    """

    pass