package com.nfl.personnages;
import java.util.EnumSet;
public class LanceurElfe extends Elfe
{
public static final int ELFE_LANCEUR_FORCE = 3;
public static final int ELFE_LANCEUR_RESISTANCE = 7;
public static final int ELFE_LANCEUR_MOUVEMENT = 6;
public static final int ELFE_LANCEUR_AGILITE = 4;
public static final int ELFE_LANCEUR_VIE = 3;
public static final EnumSet<ECompetences> ELFE_LANCEUR_SKILLS = EnumSet.of(ECompetences.Passe);
public LanceurElfe()
{
super(ERole.Lanceur, ELFE_LANCEUR_SKILLS, ELFE_LANCEUR_FORCE, ELFE_LANCEUR_RESISTANCE, ELFE_LANCEUR_MOUVEMENT, ELFE_LANCEUR_AGILITE, ELFE_LANCEUR_VIE);
}
}
|