- "Gandalf, Manager of Wizards" should now discard 3 cards from Shadow player hand to prevent the effect (if chosen).
This commit is contained in:
@@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user