|
|
@ -13,14 +13,12 @@ class StatsSet: |
|
|
|
self.initiative = initiative |
|
|
|
self.xpcoef = xpcoef |
|
|
|
|
|
|
|
|
|
|
|
class ClassType(Enum): |
|
|
|
GUERRIER = StatsSet(20, 10, 15, 5, 8) |
|
|
|
MAGICIEN = StatsSet(15, 15, 6, 5, 7) |
|
|
|
VOLEUR = StatsSet(17, 22, 9, 7, 9) |
|
|
|
ELFE = StatsSet(12, 30, 1, 5, 10) |
|
|
|
|
|
|
|
|
|
|
|
class Personnage: |
|
|
|
def __init__(self, nom, class_type, place): |
|
|
|
self.nom = nom |
|
|
@ -28,21 +26,22 @@ class Personnage: |
|
|
|
self.class_type = class_type.value |
|
|
|
|
|
|
|
self.__hp = self.class_type.hp |
|
|
|
self.stats = StatsSet(0, 0, 0, 0, 0) |
|
|
|
self.__xp = 1 |
|
|
|
|
|
|
|
self.potions = [Item(Material.POTION, 10)] |
|
|
|
self.arme = Item(Material.EPEE, StatsSet(5, 5, 5, 5, 0)) |
|
|
|
|
|
|
|
Sprite(3, self.class_name, place) |
|
|
|
#self.inventaire = |
|
|
|
|
|
|
|
def jet_attaque(self): |
|
|
|
damage = randint(1, 20) |
|
|
|
self.change_exp(self.class_type.xpcoef * self.__xp) |
|
|
|
return damage + self.class_type.initiative + self.stats.initiative |
|
|
|
return damage + self.class_type.initiative + self.arme.stats.initiative |
|
|
|
|
|
|
|
def jet_defense(self): |
|
|
|
damage = randint(1, 20) |
|
|
|
self.change_exp(self.class_type.xpcoef * self.__xp) |
|
|
|
return damage + self.class_type.initiative + self.stats.initiative |
|
|
|
return damage + self.class_type.initiative + self.arme.stats.initiative |
|
|
|
|
|
|
|
def get_hp(self): |
|
|
|
return self.__hp |
|
|
@ -66,11 +65,11 @@ class Personnage: |
|
|
|
f"Vie: {self.__hp}", |
|
|
|
f"Expérience: {self.__xp}", |
|
|
|
"Stats (classe + inventaire):", |
|
|
|
f"- HP: {self.class_type.hp} + {self.stats.hp}", |
|
|
|
f"- ATK%: {self.class_type.atkP} + {self.stats.atkP}", |
|
|
|
f"- DEF%: {self.class_type.defP} + {self.stats.defP}", |
|
|
|
f"- INITIATIVE: {self.class_type.initiative} + {self.stats.initiative}", |
|
|
|
f"- XPCOEF: {self.class_type.xpcoef} + {self.stats.xpcoef}" |
|
|
|
f"- HP: {self.class_type.hp} + {self.arme.stats.hp}", |
|
|
|
f"- ATK%: {self.class_type.atkP} + {self.arme.stats.atkP}", |
|
|
|
f"- DEF%: {self.class_type.defP} + {self.arme.stats.defP}", |
|
|
|
f"- INITIATIVE: {self.class_type.initiative} + {self.arme.stats.initiative}", |
|
|
|
f"- XPCOEF: {self.class_type.xpcoef} + {self.arme.stats.xpcoef}" |
|
|
|
) |
|
|
|
|
|
|
|
def reduced_stats(self): |
|
|
@ -78,3 +77,22 @@ class Personnage: |
|
|
|
f"Type: {self.class_name}", |
|
|
|
f"Vie: {self.__hp}", |
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
class Item(): |
|
|
|
def __init__(self, material, stats: int | StatsSet, meta=None): |
|
|
|
self.material = material |
|
|
|
self.meta = material.value if meta == None else meta |
|
|
|
self.stats = stats |
|
|
|
|
|
|
|
class ItemMeta: |
|
|
|
def __init__(self, name, description): |
|
|
|
self.name = name |
|
|
|
self.description = description |
|
|
|
|
|
|
|
class Material(Enum): |
|
|
|
POTION = ItemMeta("Potion", "TODO") |
|
|
|
EPEE = ItemMeta("Épée", "TODO") |
|
|
|
BATON = ItemMeta("Bâton", "TODO") |
|
|
|
DAGUE = ItemMeta("Dague", "TODO") |
|
|
|
ARC = ItemMeta("Arc", "TODO") |
|
|
|