- "Throne of Orthanc" now requires to spot Saruman to play it (per card text).

This commit is contained in:
marcins78
2013-03-12 11:22:35 +00:00
parent 0e9867f4b0
commit 7d057b1dec
2 changed files with 7 additions and 0 deletions

View File

@@ -10,6 +10,7 @@
- "Moria Caverns" now allows to play a Goblin from discard for discarding two cards, instead of forcing FP player to
perform a next move (per card text).
- "They Are Coming" from set 20, now requires to discard cards from hand and can be used only in Shadow phase.
- "Throne of Orthanc" now requires to spot Saruman to play it (per card text).
<b>11 Mar. 2013</b>
- Second Edition is playable now.

View File

@@ -28,6 +28,12 @@ public class Card20_240 extends AbstractPermanent {
super(Side.SHADOW, 1, CardType.ARTIFACT, Culture.ISENGARD, Zone.SUPPORT, "Throne of Orthanc");
}
@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, Filters.saruman);
}
@Override
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, final PhysicalCard self) {
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.REGROUP, self, 0)