public void EiLegen() { if (this.Gewicht > 2000) { Ei ei = new Ei(this); Eier.Add(ei); this.Gewicht -= ei.Gewicht; } }
public override void EiLegen() { if (this.Gewicht > 1500) { Ei ei = new Ei(this); this.Gewicht -= ei.Gewicht; this.Eier.Add(ei); } }
/// <summary> /// Die Henne legt ein Ei. /// </summary> public void EiLegen() { if (this.Gewicht > 1500) { Ei ei = new Ei(this); this.Eier.Add(ei); //this.Gewicht = this.Gewicht - ei.Gewicht; this.Gewicht -= ei.Gewicht; } }