This commit is contained in:
marcins78
2013-03-19 09:42:51 +00:00
parent 0fccfa03cd
commit 43f0163389
2 changed files with 5 additions and 4 deletions

View File

@@ -90,7 +90,7 @@ var set20 = {
'20_89': 'http://lotrtcg.org/coreset/elven/legolassm(r1).png',
'20_90': 'http://lotrtcg.org/coreset/elven/legolassot.png',
'20_91': 'http://lotrtcg.org/coreset/elven/longknivesoflegolasdb.png',
'20_92': 'http://lotrtcg.org/coreset/elven/legacyofelbereth.png',
'20_92': 'http://lotrtcg.org/coreset/elven/legacyofelbereth(r1).png',
'20_93': 'http://lotrtcg.org/coreset/elven/lightsofcarasgaladhon.png',
'20_94': 'http://lotrtcg.org/coreset/elven/lorienpatrol.png',
'20_95': 'http://lotrtcg.org/coreset/elven/mightofthelasthomelyhouse.png',

View File

@@ -12,8 +12,9 @@ import com.gempukku.lotro.game.state.LotroGame;
/**
* 1
* Legacy of Elbereth
* Elven Event • Skirmish
* Spot 3 Elf companions to make a minion skirmishing an Elf strength -3.
* Event • Skirmish
* Spot 3 Elves to make a minion skirmishing an Elf strength -3.
* http://lotrtcg.org/coreset/elven/legacyofelbereth(r1).png
*/
public class Card20_092 extends AbstractEvent {
public Card20_092() {
@@ -23,7 +24,7 @@ public class Card20_092 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, 3, Race.ELF, CardType.COMPANION);
&& PlayConditions.canSpot(game, 3, Race.ELF);
}
@Override