Milk - UQcsse3200/2024-studio-2 GitHub Wiki
Usage
Milk 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 16 and should be deleted from inventory after 1 uses
Creating item
public Milk(int quantity) {
super("Milk", 16, 1, quantity, 20);
this.setTexturePath(PATH);
this.setDescription("This is milk");
}