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.
15 lines
506 B
15 lines
506 B
from random import randint
|
|
class Presonnage:
|
|
def __init__(self,nom,cat)
|
|
self.nom = nom
|
|
self.pdv = 20
|
|
self.exp = 1
|
|
self.cat = cat
|
|
if self.cat == "guerrier":
|
|
self.inventaire = ["épée","potion"]
|
|
if self.cat == "magicien":
|
|
self.inventaire = ["bâton","potion"]
|
|
if self.cat == "voleur":
|
|
self.inventaire = ["dague","potion"]
|
|
if self.cat == "guerrier":
|
|
self.inventaire = ["épée","potion"]
|