From 7304bb620e3ca1e786ccf7d9736eb7d1ba8ac64a Mon Sep 17 00:00:00 2001 From: "marcins78@gmail.com" Date: Wed, 14 Dec 2011 20:29:21 +0000 Subject: [PATCH] "Ulaire Nertea" --- .../lotro/cards/set12/wraith/Card12_178.java | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set12/wraith/Card12_178.java diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set12/wraith/Card12_178.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set12/wraith/Card12_178.java new file mode 100644 index 000000000..e9350e216 --- /dev/null +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set12/wraith/Card12_178.java @@ -0,0 +1,44 @@ +package com.gempukku.lotro.cards.set12.wraith; + +import com.gempukku.lotro.cards.AbstractMinion; +import com.gempukku.lotro.common.Culture; +import com.gempukku.lotro.common.Keyword; +import com.gempukku.lotro.common.PossessionClass; +import com.gempukku.lotro.common.Race; +import com.gempukku.lotro.filters.Filters; +import com.gempukku.lotro.game.PhysicalCard; +import com.gempukku.lotro.game.state.LotroGame; +import com.gempukku.lotro.logic.modifiers.*; + +import java.util.LinkedList; +import java.util.List; + +/** + * Set: Black Rider + * Side: Shadow + * Culture: Wraith + * Twilight Cost: 4 + * Type: Minion • Nazgul + * Strength: 9 + * Vitality: 2 + * Site: 3 + * Game Text: The twilight cost of each mount is -1. While Ulaire Nertea is mounted, each Nazgul is strength +1 and has + * muster. (At the start of the regroup phase, you may discard a card from hand to draw a card.) + */ +public class Card12_178 extends AbstractMinion { + public Card12_178() { + super(4, 9, 2, 3, Race.NAZGUL, Culture.WRAITH, "Ulaire Nertea", true); + } + + @Override + public List getAlwaysOnModifiers(LotroGame game, PhysicalCard self) { + List modifiers = new LinkedList(); + modifiers.add( + new TwilightCostModifier(self, PossessionClass.MOUNT, -1)); + modifiers.add( + new StrengthModifier(self, Race.NAZGUL, new SpotCondition(self, Filters.mounted), 1)); + modifiers.add( + new KeywordModifier(self, Race.NAZGUL, new SpotCondition(self, Filters.mounted), Keyword.MUSTER, 1)); + return modifiers; + } +}