Class PowerupFactory
java.lang.Object
com.csse3200.game.entities.factories.PowerupFactory
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic Entity
static Entity
Creates a double cross power-up entity.static Entity
Creates a double damage power-up entity.static Entity
Creates a extra life power-up entity.static Entity
Creates a health boost power-up entity.static Entity
createPowerup
(PowerupConfig config) Creates a powerup entity based on the specified type.static Entity
Creates a snap power-up entity.static Entity
Creates a speed boost power-up entity.static Entity
Creates a temp immunity power-up entity.
-
Field Details
-
configs
-
-
Method Details
-
createPowerup
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
Creates a health boost power-up entity.- Returns:
- Entity representing a health boost power-up.
-
createSpeedPowerup
Creates a speed boost power-up entity.- Returns:
- Entity representing a speed boost power-up.
-
createExtraLifePowerup
Creates a extra life power-up entity.- Returns:
- Entity representing a extra life power-up.
-
createDoubleCrossPowerup
Creates a double cross power-up entity.- Returns:
- Entity representing a double cross power-up.
-
createTempImmunityPowerup
Creates a temp immunity power-up entity.- Returns:
- Entity representing a temp immunity power-up.
-
createDoubleDamagePowerup
Creates a double damage power-up entity.- Returns:
- Entity representing a double damage power-up.
-
createSnapPowerup
Creates a snap power-up entity.- Returns:
- Entity representing a snap power-up.
-
createDeathPotion
-