- "Blood Runs Chill" now makes opponent to choose the shadow cards to discard.
- "Eowyn, Lady of Ithilien" now makes opponent to wound minions.
This commit is contained in:
@@ -48,7 +48,7 @@ public class Card10_072 extends AbstractCompanion {
|
|||||||
wounds += game.getGameState().getWounds(minion);
|
wounds += game.getGameState().getWounds(minion);
|
||||||
for (int i = 0; i < wounds; i++)
|
for (int i = 0; i < wounds; i++)
|
||||||
action.appendEffect(
|
action.appendEffect(
|
||||||
new ChooseAndWoundCharactersEffect(action, playerId, 1, 1, CardType.MINION));
|
new ChooseAndWoundCharactersEffect(action, opponentId, 1, 1, CardType.MINION));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return Collections.singletonList(action);
|
return Collections.singletonList(action);
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ public class Card8_003 extends AbstractEvent {
|
|||||||
@Override
|
@Override
|
||||||
protected void opponentChosen(String opponentId) {
|
protected void opponentChosen(String opponentId) {
|
||||||
action.insertEffect(
|
action.insertEffect(
|
||||||
new ChooseAndDiscardCardsFromPlayEffect(action, playerId, count, count, Side.SHADOW));
|
new ChooseAndDiscardCardsFromPlayEffect(action, opponentId, count, count, Side.SHADOW));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,6 +2,8 @@
|
|||||||
<b>21 Nov. 2011</b>
|
<b>21 Nov. 2011</b>
|
||||||
- "Fifth Level" has now a Fortification keyword.
|
- "Fifth Level" has now a Fortification keyword.
|
||||||
- "Gate Sentry" now discards condition rather than minion.
|
- "Gate Sentry" now discards condition rather than minion.
|
||||||
|
- "Blood Runs Chill" now makes opponent to choose the shadow cards to discard.
|
||||||
|
- "Eowyn, Lady of Ithilien" now makes opponent to wound minions.
|
||||||
|
|
||||||
<b>20 Nov. 2011</b>
|
<b>20 Nov. 2011</b>
|
||||||
- "Sauron" no longer has his twilight cost reduced by the twilight pool size, instead of burdens spotted.
|
- "Sauron" no longer has his twilight cost reduced by the twilight pool size, instead of burdens spotted.
|
||||||
|
|||||||
Reference in New Issue
Block a user