public bool HasLowAmmo()
 {
     if (Tank.GetAmmo() < Tank.MaxAmmo * lowAmmoRatio)
     {
         return(true);
     }
     return(false);
 }