Пример #1
0
 public Fantassin(string nom, Organisation etatMajor) : base(nom, etatMajor)
 {
     ComportementCombat = new ComportementApiedAvecHache();
     ComportementEmettreUnSon = new ComportementCrier();
     ComportementDeplace = new ComportementDeplaceApied();
     ComportementAffichage = new ComportementAffichageHumble();
 }
Пример #2
0
 public Fantassin(string nom, Organisation etatMajor) : base(nom, etatMajor)
 {
     ComportementCombat       = new ComportementApiedAvecHache();
     ComportementEmettreUnSon = new ComportementCrier();
     ComportementDeplace      = new ComportementDeplaceApied();
     ComportementAffichage    = new ComportementAffichageHumble();
 }
Пример #3
0
        public Sorcier(EtatMajor em, string unNom, TypeEquipe e)
            : base(em, unNom, TypePersonnage.Chevalier, e)
        {
            if (e == TypeEquipe.Rouge)
                Image = Properties.Resources.pieds_marrons;
            else
                Image = Properties.Resources.pieds_noirs;

            ComportementCombat = new ComportementAvecBaguette(PointsDAttaque);
            seDeplacer = new SeDeplacerAcheval();
            ComportementEmettreUnSon = new ComportementCrier();

            PointsDeVie = 90;
            PointsDAttaque = 10;
            Vitesse = 1;
        }
Пример #4
0
        public Mangemort(EtatMajor em, string unNom, TypeEquipe e)
            : base(em, unNom, TypePersonnage.Fantassin, e)
        {
            if (e == TypeEquipe.Rouge)
                Image = Properties.Resources.pieds_marrons;
            else
                Image = Properties.Resources.pieds_noirs;

            ComportementCombat = new ComportementAvecSortilegesImpardonables(PointsDAttaque);
            seDeplacer = new SeDeplacerApiedAvecHache();
            ComportementEmettreUnSon = new ComportementCrier();

            PointsDeVie = 80;
            PointsDAttaque = 15;
            Vitesse = 1;
        }
Пример #5
0
        public Sorcier(EtatMajor em, string unNom, TypeEquipe e) :
            base(em, unNom, TypePersonnage.Chevalier, e)
        {
            if (e == TypeEquipe.Rouge)
            {
                Image = Properties.Resources.pieds_marrons;
            }
            else
            {
                Image = Properties.Resources.pieds_noirs;
            }

            ComportementCombat       = new ComportementAvecBaguette(PointsDAttaque);
            seDeplacer               = new SeDeplacerAcheval();
            ComportementEmettreUnSon = new ComportementCrier();

            PointsDeVie    = 90;
            PointsDAttaque = 10;
            Vitesse        = 1;
        }
Пример #6
0
        public Mangemort(EtatMajor em, string unNom, TypeEquipe e)
            : base(em, unNom, TypePersonnage.Fantassin, e)
        {
            if (e == TypeEquipe.Rouge)
            {
                Image = Properties.Resources.pieds_marrons;
            }
            else
            {
                Image = Properties.Resources.pieds_noirs;
            }

            ComportementCombat       = new ComportementAvecSortilegesImpardonables(PointsDAttaque);
            seDeplacer               = new SeDeplacerApiedAvecHache();
            ComportementEmettreUnSon = new ComportementCrier();


            PointsDeVie    = 80;
            PointsDAttaque = 15;
            Vitesse        = 1;
        }
Пример #7
0
 public Archer(string nom, Organisation etatMajor) : base(nom, etatMajor)
 {
     ComportementCombat = new ComportementAvecArc();
     ComportementEmettreUnSon = new ComportementCrier();
     ComportementAffichage  = new ComportementAffichageHumble();
 }
Пример #8
0
 public Archer(string nom, Organisation etatMajor) : base(nom, etatMajor)
 {
     ComportementCombat       = new ComportementAvecArc();
     ComportementEmettreUnSon = new ComportementCrier();
     ComportementAffichage    = new ComportementAffichageHumble();
 }