162163164165166167168169170171172
* @return boolean */ @Override public boolean isPlayable(Card card, Table table) { CardColor tableColor; if (table.getSize() <= 0) { return true; } else if ((tableColor = table.getCard(table.getFirstCardPlace()).getColor()) == card.getColor()) { return true;