- Added resistance to card detail information window.

This commit is contained in:
marcins78@gmail.com
2012-01-22 14:52:50 +00:00
parent 25baa58eb4
commit 60dfa33f60
2 changed files with 8 additions and 0 deletions

View File

@@ -148,6 +148,11 @@ public class LotroGameMediator {
sb.append("<br><b>Vitality:</b> " + vitality);
} catch (UnsupportedOperationException exp) {
}
try {
int resistance = _lotroGame.getModifiersQuerying().getResistance(_lotroGame.getGameState(), card);
sb.append("<br><b>Resistance:</b> " + resistance);
} catch (UnsupportedOperationException exp) {
}
try {
int siteNumber = _lotroGame.getModifiersQuerying().getMinionSiteNumber(_lotroGame.getGameState(), card);
sb.append("<br><b>Site number:</b> " + siteNumber);

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>22 Jan. 2012</b>
- Added resistance to card detail information window.
<b>18 Jan. 2012</b>
- The casual games now have correct amount of cards in deck.
- Conditions which become minions now have a default site number of 0.