- "Gandalf, Manager of Wizards" should now discard 3 cards from Shadow player hand to prevent the effect (if chosen).

This commit is contained in:
marcins78@gmail.com
2011-11-24 20:27:01 +00:00
parent 318ecc9eb8
commit 44e8e40e04
3 changed files with 6 additions and 1 deletions

View File

@@ -92,7 +92,7 @@ public class Card7_037 extends AbstractCompanion {
@Override
protected void cardsSelected(LotroGame game, Collection<PhysicalCard> selectedCards) {
for (PhysicalCard selectedCard : selectedCards) {
action.insertCost(
subAction.insertEffect(
new PutCardFromHandOnTopOfDeckEffect(selectedCard));
}
}

View File

@@ -30,6 +30,10 @@ public class SubAction implements Action {
_effects.add(effect);
}
public void insertEffect(Effect effect) {
_effects.add(0, effect);
}
@Override
public PhysicalCard getActionSource() {
return _action.getActionSource();

View File

@@ -8,6 +8,7 @@ at a time (because of the Rule of 4 rule).
- "What Are We Waiting For?" should now correctly skip Shadow phase, if such option is chosen.
- If there is a choice of number involved of 0-1 range (i.e. one token on "Grond"), it will be now possible to choose 1.
- "Shire Countryside" should only trigger when it's the FP player that removes the token.
- "Gandalf, Manager of Wizards" should now discard 3 cards from Shadow player hand to prevent the effect (if chosen).
<b>23 Nov. 2011</b>
- "Jarnsmid" now modifies the twilight cost of the itmes by -1, rather than +1.