You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AM2R-TimeTrials/scripts/is_breakable_block.gml

26 lines
502 B

///is_breakable_block(id);
//Returns if the solid is of the breakable type.
var breakable = false;
switch (argument0)
{
case oBlockShoot:
case oBlockShootChain:
case oBlockBomb:
case oBlockBombChain:
case oBlockBombItem:
case oBlockScrew:
case oBlockPBomb:
case oBlockPBombChain:
case oBlockMissile:
case oBlockSMissile:
case oBlockSpeed:
case oBlockSand:
case oBlockStep:
case oDestroyedBlock:
breakable = true;
}
return(breakable);