- "Cleaved" can now be transferred only form Support area.

This commit is contained in:
marcins78
2013-03-19 12:19:19 +00:00
parent cb1cb8adb6
commit e40694233d
2 changed files with 3 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
- Applied revision 1 changes to set 20.
- "Bolstered Spirits" is now a Spell (per card text).
- Cards that prevent adding burdens, now should do so correctly.
- "Cleaved" can now be transferred only form Support area.
<b>15 Mar. 2013</b>
- "Lothlorien" correctly requires to spot 2 elves, instead of just one to remove the burden.

View File

@@ -57,7 +57,8 @@ public class Card18_114 extends AbstractPermanent {
return Collections.singletonList(action);
}
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.ARCHERY, self, 0)
&& PlayConditions.canSpot(game, Culture.URUK_HAI, CardType.MINION)) {
&& PlayConditions.canSpot(game, Culture.URUK_HAI, CardType.MINION)
&& self.getZone() == Zone.SUPPORT) {
final ActivateCardAction action = new ActivateCardAction(self);
action.appendEffect(
new ChooseActiveCardEffect(self, playerId, "Choose a Free Peoples archer", Side.FREE_PEOPLE, Keyword.ARCHER) {