- "Arwen", "Echo of Luthien" now applies its -3 penalty only if the card was actually ELVEN.

This commit is contained in:
marcins78
2013-03-07 10:21:39 +00:00
parent ae528b8c0d
commit 6317a19125
2 changed files with 5 additions and 2 deletions

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>7 Mar. 2013</b>
- "Arwen", "Echo of Luthien" now applies its -3 penalty only if the card was actually ELVEN.
<b>5 Mar. 2013</b>
- "Bilbo", "Bearer of Things Burgled" and any card that allows a choice of adding twilight now correctly displays
the effect text.

View File

@@ -45,9 +45,9 @@ public class Card10_005 extends AbstractCompanion {
@Override
protected void discardedCardCallback(PhysicalCard card) {
if (card.getBlueprint().getCulture() == Culture.ELVEN) {
action.appendEffect(
new AddUntilEndOfPhaseModifierEffect(new StrengthModifier(self, Filters.and(CardType.MINION, Filters.inSkirmishAgainst(self)), -3)));
}
action.appendEffect(
new AddUntilEndOfPhaseModifierEffect(new StrengthModifier(self, Filters.and(CardType.MINION, Filters.inSkirmishAgainst(self)), -3)));
}
});
return Collections.singletonList(action);