def __init__(self, ID, Type, name, attack, damageType, effect, description, dialog, cost, health):
     '''
     Constructor
     @param health: Les points de vie
     '''
     Card.__init__(self, ID, Type, name, attack, damageType, effect, description, dialog, cost)
     self.health = health
 def __init__(self, ID, Type, name, attack, damageType, effect, description, dialog, cost):
     '''
     Constructor
     '''
     Card.__init__(self, ID, Type, name, attack, damageType, effect, description, dialog, cost)