14 lines
279 B
Python
14 lines
279 B
Python
# characterfg.da_magenta +
|
|
|
|
from sty import fg
|
|
|
|
|
|
class Character:
|
|
HERO = 1
|
|
MONSTER = 2
|
|
|
|
def __init__(self, name: str, description: str, HP: int) -> None:
|
|
self.id: int = None
|
|
self.name = name
|
|
self.description = description
|
|
self.HP = HP
|