LanceurElfe.java :  » Game » androidnfl » com » nfl » personnages » Android Open Source

Android Open Source » Game » androidnfl 
androidnfl » com » nfl » personnages » LanceurElfe.java
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);
  }
  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.