Exemplo n.º 1
0
 public Orc(string name, Sword sword, GoldenShield shield, string role)
 {
     this.Name         = name;
     this.Damage       = 20;
     this.Health       = initialHealth;
     this.Sword        = sword;
     this.GoldenShield = shield;
     this.Role         = role;
 }
Exemplo n.º 2
0
 //Metodo que cambia escudo al orco.
 public void AttachShield(GoldenShield shield)
 {
     this.GoldenShield = shield;
 }