Class LaboratoryInventoryComponent

java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.components.LaboratoryInventoryComponent

public class LaboratoryInventoryComponent extends Component
LaboratoryInventoryComponent handles the inventory of a laboratory, specifically the number of potions it contains.
  • Constructor Details

    • LaboratoryInventoryComponent

      public LaboratoryInventoryComponent(int potion)
      Initializes a LaboratoryInventoryComponent with the specified initial number of potions.
      Parameters:
      potion - The initial number of potions in the laboratory.
  • Method Details

    • getPotion

      public int getPotion()
      Gets the current number of potions in the laboratory.
      Returns:
      The current number of potions.
    • hasPotion

      public Boolean hasPotion(int potion)
      Checks if the laboratory has at least a certain number of potions.
      Parameters:
      potion - The number of potions to check.
      Returns:
      True if the laboratory has at least the specified number of potions, false otherwise.
    • setPotion

      public void setPotion(int potion)
      Sets the number of potions in the laboratory.
      Parameters:
      potion - The new number of potions.
    • addPotion

      public void addPotion(int potion)
      Adds a certain number of potions to the laboratory's inventory.
      Parameters:
      potion - The number of potions to add.