- "Wizard's Wrath" now correctly exerts Saruman.

This commit is contained in:
marcins78
2013-03-25 11:28:40 +00:00
parent 9b52bc41c6
commit 0597103c0b
2 changed files with 4 additions and 0 deletions

View File

@@ -4,6 +4,7 @@
- "Hama, Protector of the Golden Hall" has now 7 resistance, not 5 (per card text).
- Applied revision 2 changes to set 20.
- "Throne of Orthanc" is now unique (per card text).
- "Wizard's Wrath" now correctly exerts Saruman.
<b>20 Mar. 2013</b>
- "Uruk Mender" has now 8 strength (per card text).

View File

@@ -4,6 +4,7 @@ import com.gempukku.lotro.cards.AbstractResponseEvent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.TriggerConditions;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Keyword;
import com.gempukku.lotro.common.Side;
@@ -36,6 +37,8 @@ public class Card20_243 extends AbstractResponseEvent {
&& checkPlayRequirements(playerId, game, self, 0, 0, false, false)
&& PlayConditions.canExert(self, game, Filters.saruman)) {
PlayEventAction action = new PlayEventAction(self);
action.appendCost(
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Filters.saruman));
action.appendEffect(
new ChooseAndWoundCharactersEffect(action, playerId, 1, 1, Filters.unboundCompanion));
return Collections.singletonList(action);