public void QuitarBaston() { if (this.Baston != null) { this.AttackDmg = this.AttackDmg - this.Baston.AttackDmg; this.Baston = null; } else { Console.WriteLine("No posee este item"); } }
public void AgregarBaston(Baston baston) { if (this.Baston == null) { this.Baston = baston; this.AttackDmg = this.attackdmg + baston.AttackDmg; } else { Console.WriteLine("Ya posee este item"); } }
public void Setup() { Gandalf = new Mago("Gandalf"); Baston = new Baston(); Libro = new Libro(); }