// Tyler Mi // A class representing a Cat! public class Cat extends Animal{ private int uwuLevel; private int chonkLevel; // Constructs a cat with the given name, breed, size, uwu level, and chonk level public Cat(String name, String breed, double size, int uwuLevel, int chonkLevel) { super(name, breed, size); this.uwuLevel = uwuLevel; this.chonkLevel = chonkLevel; } // Returns the uwu level of the cat public int getUwuLevel() { return uwuLevel; } // Returns the chonk level of the cat public int getChonkLevel() { return chonkLevel; } // Returns a string representation of the cat public String toString() { return "\n" + "/\\_/\\ \n" + ">^,^< \n" + " / \\ \n" + "(___)___ \n"; } // The cat makes a sound public void makeSound() { System.out.println("nyan"); } }