You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
2.2 KiB

2 years ago
from enum import Enum
2 years ago
from random import randint
2 years ago
class StatsSet():
2 years ago
#HP, ATK%, DEF%, CRIT, CRITRATE%, XPCOEF
def __init__(self, hp, atkP, defP, crit, critrateP, xpcoef):
2 years ago
self.hp = hp
2 years ago
self.atkP = atkP
2 years ago
self.defP = defP
self.crit = crit
self.critrateP = critrateP
2 years ago
self.xpcoef = xpcoef
2 years ago
class ClassType(Enum):
2 years ago
GUERRIER = StatsSet(20, 10, 12, 5, 10, 8)
MAGICIEN = StatsSet(16, 12, 6, 8, 15, 7)
#VOLEUR =
#ELF =
2 years ago
class Personnage:
2 years ago
def __init__(self, nom, class_type):
2 years ago
self.nom = nom
self.class_type = class_type
2 years ago
self.__hp = self.class_type.hp
self.stats = StatsSet(0, 0, 0, 0, 0, 0)
self.__xp = 1
2 years ago
#self.inventaire =
2 years ago
#self.element =
def jet_attaque(self):
damage = randint(1, 20)
self.change_exp(self.class_type.xpcoef * self.__xp)
return damage + damage * (self.class_type.atkP + self.stats.atkP)
def jet_defense(self):
damage = randint(1, 20)
self.change_exp(self.class_type.xpcoef * self.__xp)
return damage + damage * (self.class_type.defP + self.stats.defP)
def get_hp(self):
return self.__hp
def change_hp(self, nb_hp):
if self.__hp - nb_hp < 0:
self.__hp = 0
else:
self.__hp -= nb_hp
def get_xp(self):
return self.__xp
def change_exp(self, nb_exp):
if nb_exp > 0:
self.__xp += nb_exp
else:
raise ValueError("nb_exp attends un nombre positif")
def affiche_caracteristiques(self):
print(f"Nom: {self.nom}")
print(f"Type de classe: {self.class_type.name}")
print(f"Vie: {self.__hp}")
print(f"Expérience: {self.__xp}")
print("Stats (classe + personnage):")
print(f"- HP: {self.class_type.hp} + {self.stats.hp}")
print(f"- ATK%: {self.class_type.atkP} + {self.stats.atkP}")
print(f"- DEF%: {self.class_type.defP} + {self.stats.defP}")
print(f"- CRIT: {self.class_type.crit} + {self.stats.crit}")
print(f"- CRITRATE%: {self.class_type.critrateP} + {self.stats.critrateP}")
print(f"- XPCOEF: {self.class_type.xpcoef} + {self.stats.xpcoef}")