- "Gandalf, Manager of Wizards" now puts 3 cards from hand on top of deck in case of both players.
This commit is contained in:
@@ -86,16 +86,17 @@ public class Card7_037 extends AbstractCompanion {
|
||||
|
||||
@Override
|
||||
protected void doPlayEffect(LotroGame game) {
|
||||
subAction.appendEffect(
|
||||
new ChooseCardsFromHandEffect(opponentId, 1, 1, Filters.any) {
|
||||
@Override
|
||||
protected void cardsSelected(LotroGame game, Collection<PhysicalCard> selectedCards) {
|
||||
for (PhysicalCard selectedCard : selectedCards) {
|
||||
action.insertCost(
|
||||
new PutCardFromHandOnTopOfDeckEffect(selectedCard));
|
||||
for (int i = 0; i < 3; i++)
|
||||
subAction.appendEffect(
|
||||
new ChooseCardsFromHandEffect(opponentId, 1, 1, Filters.any) {
|
||||
@Override
|
||||
protected void cardsSelected(LotroGame game, Collection<PhysicalCard> selectedCards) {
|
||||
for (PhysicalCard selectedCard : selectedCards) {
|
||||
action.insertCost(
|
||||
new PutCardFromHandOnTopOfDeckEffect(selectedCard));
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
@@ -8,6 +8,7 @@ when Frodo dies from having 0 Vitality.
|
||||
- Unique cards will have now "dot" in front of their names in chat log and other places.
|
||||
- "Preparations" stacks card from discard now, rather than from hand.
|
||||
- "Sent Back" now allows to play Wizard as well.
|
||||
- "Gandalf, Manager of Wizards" now puts 3 cards from hand on top of deck in case of both players.
|
||||
|
||||
<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