Merge branch 'development' of https://github.com/PTE-SH/ShadowHunterGame into development

This commit is contained in:
Paul Gross
2020-04-22 20:42:29 +02:00
2 changed files with 77 additions and 2 deletions

View File

@ -9,8 +9,8 @@ import main.Plateau;
public class Charles extends CartePersonnage{
public Charles(String nom, int hp, Joueur joueur) {
super(nom, nom, hp, joueur);
public Charles(Joueur joueur) {
super("Charles", "desc", 11, joueur);
Action action = new ActionAltererStatistiquesJoueur("HP",-2,true);
Effet effet = new EffetSelf(action);