- "Birchseed" no longer freezes the game, if you can pay the cost both ways (exert Hobbit and discard 2 cards).

This commit is contained in:
marcins78@gmail.com
2011-10-21 12:35:13 +00:00
parent e09501b68c
commit 8b2da41ee3
2 changed files with 15 additions and 2 deletions

View File

@@ -60,9 +60,19 @@ public class Card5_015 extends AbstractCompanion {
ActivateCardAction action = new ActivateCardAction(self);
List<Effect> possibleCosts = new LinkedList<Effect>();
possibleCosts.add(
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Race.HOBBIT, Filters.unboundCompanion));
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Race.HOBBIT, Filters.unboundCompanion) {
@Override
public String getText(LotroGame game) {
return "Exert an unbound Hobbit";
}
});
possibleCosts.add(
new ChooseAndDiscardCardsFromHandEffect(action, playerId, false, 2));
new ChooseAndDiscardCardsFromHandEffect(action, playerId, false, 2) {
@Override
public String getText(LotroGame game) {
return "Discard 2 cards from hand";
}
});
action.appendCost(
new ChoiceEffect(action, playerId, possibleCosts));
action.appendEffect(

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>21 Oct. 2011</b>
- "Birchseed" no longer freezes the game, if you can pay the cost both ways (exert Hobbit and discard 2 cards).
<b>20 Oct. 2011</b>
- "The One Ring" should now work correctly if you put it on twice during a turn (move twice).
- "Hand Axe" can now be discarded during Archery phase to add 1 to archery.