/// <summary>
 /// Activate the powerup's ability.  In this case, give health
 /// </summary>
 /// <param name="s">The ship receiving health</param>
 public override void ActivateAbility(Ship s)
 {
     s.giveHealth(s.MaxHealth / 10);  //give back 10% of health
 }