Class PowerupFactory

java.lang.Object
com.csse3200.game.entities.factories.PowerupFactory

public class PowerupFactory extends Object
  • Field Details

  • Method Details

    • createPowerup

      public static Entity createPowerup(PowerupConfig config)
      Creates a powerup entity based on the specified type. The entity will have a texture render component representing the image of the powerup, a physics component, and a hitbox component set to PLAYER layer, and a PowerupComponment.
    • createHealthPowerup

      public static Entity createHealthPowerup()
      Creates a health boost power-up entity.
      Returns:
      Entity representing a health boost power-up.
    • createSpeedPowerup

      public static Entity createSpeedPowerup()
      Creates a speed boost power-up entity.
      Returns:
      Entity representing a speed boost power-up.
    • createExtraLifePowerup

      public static Entity createExtraLifePowerup()
      Creates a extra life power-up entity.
      Returns:
      Entity representing a extra life power-up.
    • createDoubleCrossPowerup

      public static Entity createDoubleCrossPowerup()
      Creates a double cross power-up entity.
      Returns:
      Entity representing a double cross power-up.
    • createTempImmunityPowerup

      public static Entity createTempImmunityPowerup()
      Creates a temp immunity power-up entity.
      Returns:
      Entity representing a temp immunity power-up.
    • createDoubleDamagePowerup

      public static Entity createDoubleDamagePowerup()
      Creates a double damage power-up entity.
      Returns:
      Entity representing a double damage power-up.
    • createSnapPowerup

      public static Entity createSnapPowerup()
      Creates a snap power-up entity.
      Returns:
      Entity representing a snap power-up.
    • createDeathPotion

      public static Entity createDeathPotion()