From 2b3792729c0f93f5503e408bd6d627e7784f49f6 Mon Sep 17 00:00:00 2001 From: marcins78 Date: Tue, 12 Mar 2013 11:54:31 +0000 Subject: [PATCH] - "The Palantir of Orthanc, Defiler of Wizards" now requires to spot ISENGARD minion to play (per card text). --- .../gemp-lotr-async/src/main/web/includes/changeLog.html | 1 + .../com/gempukku/lotro/cards/set20/isengard/Card20_239.java | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html b/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html index d60a9e210..968e3c0e8 100644 --- a/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html +++ b/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html @@ -21,6 +21,7 @@ abilities. - Corrected the images assignments of Arwen (switched the two), also "Arwen, Bane of the Black Riders" became "Arwen, Lady of Imladris" with completely different text (per card text). - "Orophin, Lorien Scount" has moved in to Lothlorien (added the keyword). +- "The Palantir of Orthanc, Defiler of Wizards" now requires to spot ISENGARD minion to play (per card text). 11 Mar. 2013 - Second Edition is playable now. diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/isengard/Card20_239.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/isengard/Card20_239.java index 0d7170115..2d74c06f0 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/isengard/Card20_239.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/isengard/Card20_239.java @@ -32,6 +32,12 @@ public class Card20_239 extends AbstractPermanent { super(Side.SHADOW, 0, CardType.ARTIFACT, Culture.ISENGARD, Zone.SUPPORT, "The Palantir of Orthanc", "Defiler of Wizards", true); } + @Override + public boolean checkPlayRequirements(String playerId, LotroGame game, PhysicalCard self, int withTwilightRemoved, int twilightModifier, boolean ignoreRoamingPenalty, boolean ignoreCheckingDeadPile) { + return super.checkPlayRequirements(playerId, game, self, withTwilightRemoved, twilightModifier, ignoreRoamingPenalty, ignoreCheckingDeadPile) + && PlayConditions.canSpot(game, Culture.ISENGARD, CardType.MINION); + } + @Override public List getOptionalInPlayAfterActions(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) { if (TriggerConditions.played(game, effectResult, Keyword.SPELL)