Exemplo n.º 1
0
 public void TuerCommeUnCretinAvecUNeEpee(Personnage cible)
 {
     Console.WriteLine("Je suis " + nom + " et je frappe "+ cible.nomPerso()+ " comme un cretin ");
     infligerDegats(cible, 35);
 }
Exemplo n.º 2
0
 public void LancerBouledeGlace(Personnage cible)
 {
     Console.WriteLine("Je suis " + nom + " et je lance une boule de glace sur " + cible.nomPerso());
     infligerDegats(cible, 20);
 }
Exemplo n.º 3
0
 protected void infligerDegats(Personnage cible, int dgts)
 {
     cible.recevoirDegats(dgts);
 }