- "Uruk Mender" has now 8 strength (per card text).

- "Illuminate" now spots Gandalf, not just GANDALF culture card to play it.
This commit is contained in:
marcins78
2013-03-20 12:22:29 +00:00
parent bac3c62976
commit ef60720fae
3 changed files with 7 additions and 2 deletions

View File

@@ -1,4 +1,8 @@
<pre style="font-size:80%">
<b>20 Mar. 2013</b>
- "Uruk Mender" has now 8 strength (per card text).
- "Illuminate" now spots Gandalf, not just GANDALF culture card to play it.
<b>19 Mar. 2013</b>
- Applied revision 1 changes to set 20.
- "Bolstered Spirits" is now a Spell (per card text).

View File

@@ -7,6 +7,7 @@ import com.gempukku.lotro.cards.effects.RevealRandomCardsFromHandEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseOpponentEffect;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.effects.ChooseAndHealCharactersEffect;
@@ -30,7 +31,7 @@ public class Card20_470 extends AbstractEvent {
@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.GANDALF);
&& PlayConditions.canSpot(game, Filters.gandalf);
}
@Override

View File

@@ -26,7 +26,7 @@ import java.util.List;
*/
public class Card20_221 extends AbstractMinion {
public Card20_221() {
super(3, 9, 2, 5, Race.URUK_HAI, Culture.ISENGARD, "Uruk Mender", null, true);
super(3, 8, 2, 5, Race.URUK_HAI, Culture.ISENGARD, "Uruk Mender", null, true);
addKeyword(Keyword.DAMAGE, 1);
}