public boolean fight(Cat anotherCat) { if (this.age + this.weight + this.strength > anotherCat.age + anotherCat.weight + anotherCat.strength) return true; else return false; }