}
}
List<Suit> suitsWithAtLeast5Cards = hand.getSuitsWithAtLeastCards(5);
if (suitsWithAtLeast5Cards.size() > 0) {
Suit highestSuitWithAtLeast5Cards = suitsWithAtLeast5Cards.get(0).asSuit();
if (calculator.getCombinedPoints() >= 8 && calculator.getCombinedPoints() <= 11) {
return makeCheapestBid(highestSuitWithAtLeast5Cards);
}
if (calculator.getCombinedPoints() >= 12 && calculator.getCombinedPoints() <= 14) {
Bid bid = makeCheapestBid(highestSuitWithAtLeast5Cards);