Chicken - UQcsse3200/2024-studio-2 GitHub Wiki
Usage
Chicken is a subclass of the Food class. This item provides values for the quantity, limit, texture, name, effect, and item code of this specific item.
Expected Behaviour
The item should be able to increase the player's hunger stat by 7 and should be deleted from inventory after 1 uses
Creating item
public Chicken(Texture foodTexture) {
super("Chicken", 7, 10, 1, new FeedEffect(7));
this.chickenTexture = new Texture("foodTexture/chicken_leg.png");
}