- "Legacy of Numenor" now heals the ranged only if wins against a roaming minion (not just any minion).

This commit is contained in:
marcins78
2013-03-14 18:23:43 +00:00
parent 1741be041a
commit 23f9ac29ca
2 changed files with 3 additions and 1 deletions

View File

@@ -10,6 +10,7 @@
- "Dunlending Ruffian" assigns itself to the companion, only if it is alive.
- "Boromir, Son of Denethor" now has 6 resistance, instead of 5 (per card text).
- "Mearas of the Mark" now exerts only minions in its skirmish (per card text).
- "Legacy of Numenor" now heals the ranged only if wins against a roaming minion (not just any minion).
<b>13 Mar. 2013</b>
- "Waylayed" now wounds 1 companion 4 times, instead of 4 companions once.

View File

@@ -4,6 +4,7 @@ import com.gempukku.lotro.cards.AbstractPermanent;
import com.gempukku.lotro.cards.TriggerConditions;
import com.gempukku.lotro.cards.effects.SelfDiscardEffect;
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.actions.RequiredTriggerAction;
@@ -28,7 +29,7 @@ public class Card20_198 extends AbstractPermanent {
@Override
public List<RequiredTriggerAction> getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (TriggerConditions.winsSkirmish(game, effectResult, Culture.GONDOR, Keyword.RANGER)) {
if (TriggerConditions.winsSkirmishInvolving(game, effectResult, Filters.and(Culture.GONDOR, Keyword.RANGER), Filters.and(CardType.MINION, Keyword.ROAMING))) {
RequiredTriggerAction action = new RequiredTriggerAction(self);
action.appendEffect(
new HealCharactersEffect(self, ((CharacterWonSkirmishResult) effectResult).getWinner()));