PowerupContainer

Object that is a container for powerups. Used with the SetPowerups function.

Constructors

Powerups()

Properties

number BlastRadiusHow much Blast Radius should be given
number BombsHow many Bombs should be given
number SpeedHow much Speed should be given
bool GrantsShieldWhether Shield should be granted
bool GrantsPushingWhether Pushing should be granted
bool GrantsJumpingWhether Jumping should be granted

Examples

local container = Powerups();
container.BlastRadius = 2;
container.Bombs = 5;
container.Speed = 1;
container.GrantsShield = true;
container.GrantsPushing = true;
container.GrantsJumping = false;