path-of-the-loner/models/heroes/character.py
2025-03-03 16:47:07 +01:00

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