- "Ithilien Wildwood" now makes FP player to wound the companions, not Shadow player.
This commit is contained in:
@@ -24,6 +24,7 @@ Lady of Imladris" with completely different text (per card text).
|
||||
- "The Palantir of Orthanc, Defiler of Wizards" now requires to spot ISENGARD minion to play (per card text).
|
||||
- "Treachery Runs Deep" now correctly checks the twilight available before being able to play it.
|
||||
- "Treachery Runs Deep" is no longer a Spell (per card text).
|
||||
- "Ithilien Wildwood" now makes FP player to wound the companions, not Shadow player.
|
||||
|
||||
<b>11 Mar. 2013</b>
|
||||
- Second Edition is playable now.
|
||||
|
||||
@@ -32,7 +32,7 @@ public class Card20_442 extends AbstractSite {
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<? extends Action> getPhaseActions(final String playerId, LotroGame game, PhysicalCard self) {
|
||||
public List<? extends Action> getPhaseActions(final String playerId, final LotroGame game, PhysicalCard self) {
|
||||
if (PlayConditions.canUseSiteDuringPhase(game, Phase.REGROUP, self)
|
||||
&& GameUtils.isShadow(game, playerId)) {
|
||||
final ActivateCardAction action = new ActivateCardAction(self);
|
||||
@@ -43,7 +43,7 @@ public class Card20_442 extends AbstractSite {
|
||||
int count = cards.size();
|
||||
if (count > 0)
|
||||
action.appendEffect(
|
||||
new ChooseAndWoundCharactersEffect(action, playerId, count, count, CardType.COMPANION));
|
||||
new ChooseAndWoundCharactersEffect(action, game.getGameState().getCurrentPlayerId(), count, count, CardType.COMPANION));
|
||||
}
|
||||
});
|
||||
return Collections.singletonList(action);
|
||||
|
||||
Reference in New Issue
Block a user