- Unique cards will have now "dot" in front of their names in chat log and other places.
This commit is contained in:
@@ -4,6 +4,7 @@ import com.gempukku.lotro.common.Culture;
|
||||
import com.gempukku.lotro.common.Filterable;
|
||||
import com.gempukku.lotro.common.Token;
|
||||
import com.gempukku.lotro.filters.Filters;
|
||||
import com.gempukku.lotro.game.LotroCardBlueprint;
|
||||
import com.gempukku.lotro.game.PhysicalCard;
|
||||
import com.gempukku.lotro.game.state.GameState;
|
||||
import com.gempukku.lotro.game.state.LotroGame;
|
||||
@@ -42,7 +43,8 @@ public class GameUtils {
|
||||
}
|
||||
|
||||
public static String getCardLink(PhysicalCard card) {
|
||||
return "<div class='cardHint' value='" + card.getBlueprintId() + "'>" + card.getBlueprint().getName() + "</div>";
|
||||
LotroCardBlueprint blueprint = card.getBlueprint();
|
||||
return "<div class='cardHint' value='" + card.getBlueprintId() + "'>" + (blueprint.isUnique() ? "•" : "") + blueprint.getName() + "</div>";
|
||||
}
|
||||
|
||||
public static String getAppendedTextNames(Collection<PhysicalCard> cards) {
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
- "Sneaking!" now sums the minions vitality to check if it should cancel the skirmish, or heal him.
|
||||
- Versions of "Sam" that can become Ring-bearers when "Frodo" is killed now should be able to pick up the Ring correctly
|
||||
when Frodo dies from having 0 Vitality.
|
||||
- Unique cards will have now "dot" in front of their names in chat log and other places.
|
||||
|
||||
<b>22 Nov. 2011</b>
|
||||
- If a FP character had already some minion assigned, when FP player assigns minion, that character now counts the
|
||||
|
||||
Reference in New Issue
Block a user