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