jordan
2 months ago
1 changed files with 12 additions and 0 deletions
@ -0,0 +1,12 @@ |
|||
from random import randint |
|||
class Personnage: |
|||
def __init__ (self, nom, pdv, exp, cat): |
|||
self.nom = nom |
|||
self.pdv = pdv |
|||
self.exp = exp |
|||
self.cat = cat |
|||
self.inventaire = |
|||
|
|||
def jet_attaque(self): |
|||
|
|||
|
Loading…
Reference in new issue