More tests

This commit is contained in:
Yohann D'ANELLO
2020-11-08 23:48:26 +01:00
parent 3486c865a1
commit 0ab0e6a00c
7 changed files with 22 additions and 11 deletions

View File

@ -4,6 +4,10 @@ from ..interfaces import FightingEntity
class Player(FightingEntity):
maxhealth: int = 20
strength: int = 5
intelligence: int = 1
charisma: int = 1
dexterity: int = 1
constitution: int = 1
level: int = 1
current_xp: int = 0
max_xp: int = 10