示例#1
0
        public Moldu(EtatMajor em, string unNom, TypeEquipe e)
            : base(em, unNom, TypePersonnage.Princesse, e)
        {
            if (e == TypeEquipe.Rouge)
                Image = Properties.Resources.pieds_marrons;
            else
                Image = Properties.Resources.pieds_noirs;

            //ComportementCombat = new ComportementAMainsNues(PointsDAttaque);
            ComportementEmettreUnSon = new ComportementParlerPrincesse();
            seDeplacer = new SeDeplacerApiedAvecHache();

            PointsDeVie = 95;
            PointsDAttaque = 1;
            Vitesse = 1;
        }
示例#2
0
        public Moldu(EtatMajor em, string unNom, TypeEquipe e) :
            base(em, unNom, TypePersonnage.Princesse, e)
        {
            if (e == TypeEquipe.Rouge)
            {
                Image = Properties.Resources.pieds_marrons;
            }
            else
            {
                Image = Properties.Resources.pieds_noirs;
            }

            //ComportementCombat = new ComportementAMainsNues(PointsDAttaque);
            ComportementEmettreUnSon = new ComportementParlerPrincesse();
            seDeplacer = new SeDeplacerApiedAvecHache();

            PointsDeVie    = 95;
            PointsDAttaque = 1;
            Vitesse        = 1;
        }
 public Princesse(string nom,Organisation organisation) : base(nom, organisation)
 {
     ComportementEmettreUnSon = new ComportementParlerPrincesse();
     ComportementDeplace = new ComportementDeplaceApied();
     ComportementAffichage = new ComportementAffichageNoble();
 }
 public Princesse(string nom, Organisation organisation) : base(nom, organisation)
 {
     ComportementEmettreUnSon = new ComportementParlerPrincesse();
     ComportementAffichage    = new ComportementAffichageNoble();
 }