- "Farin, Dwarf of Erebor" no longer has the extra activated ability of the old version.

This commit is contained in:
marcins78
2013-03-13 12:25:39 +00:00
parent 9aee98cd1c
commit d2a0db73f3
2 changed files with 2 additions and 30 deletions

View File

@@ -12,6 +12,7 @@
- "Troll of Morannon" has lost its prowess (Damage +1) (per card text).
- FP player wins now in Second Edition, when Shadow player reconciles during regroup on site 9.
- "Ulaire Cantea, Morgul Predator"'s trigger is now an optional one (power-level adjustment).
- "Farin, Dwarf of Erebor" no longer has the extra activated ability of the old version.
<b>12 Mar. 2013</b>
- "Flaming Brand" from set 20 should now correctly apply strength and damage bonus if bearer is skirmishing a Nazgul.

View File

@@ -4,17 +4,12 @@ import com.gempukku.lotro.cards.AbstractCompanion;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.TriggerConditions;
import com.gempukku.lotro.cards.effects.RemoveTwilightEffect;
import com.gempukku.lotro.cards.effects.SelfExertEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndDiscardStackedCardsEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndStackCardsFromHandEffect;
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.ActivateCardAction;
import com.gempukku.lotro.logic.actions.OptionalTriggerAction;
import com.gempukku.lotro.logic.effects.ChooseActiveCardEffect;
import com.gempukku.lotro.logic.effects.DrawCardsEffect;
import com.gempukku.lotro.logic.timing.EffectResult;
import java.util.Collection;
@@ -45,7 +40,7 @@ public class Card20_050 extends AbstractCompanion {
new ChooseAndDiscardStackedCardsEffect(action, playerId, 1, 1, Filters.and(Culture.DWARVEN, CardType.CONDITION), Culture.DWARVEN) {
@Override
protected void discardingCardsCallback(Collection<PhysicalCard> cards) {
if (cards.size()>0) {
if (cards.size() > 0) {
final PhysicalCard card = cards.iterator().next();
action.appendEffect(
new RemoveTwilightEffect(card.getBlueprint().getTwilightCost()));
@@ -56,28 +51,4 @@ public class Card20_050 extends AbstractCompanion {
}
return null;
}
@Override
protected List<ActivateCardAction> getExtraInPlayPhaseActions(final String playerId, LotroGame game, PhysicalCard self) {
if (PlayConditions.canUseFPCardDuringPhase(game, Phase.FELLOWSHIP, self)
&& PlayConditions.canSelfExert(self, game)
&& PlayConditions.hasCardInHand(game, playerId, 1, Culture.DWARVEN, CardType.EVENT)
&& PlayConditions.canSpot(game, Culture.DWARVEN, Keyword.SUPPORT_AREA, CardType.CONDITION)) {
final ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new SelfExertEffect(action, self));
action.appendCost(
new ChooseActiveCardEffect(self, playerId, "Choose DWARVEN condition in your support area", Culture.DWARVEN, Keyword.SUPPORT_AREA, CardType.CONDITION) {
@Override
protected void cardSelected(LotroGame game, PhysicalCard card) {
action.appendCost(
new ChooseAndStackCardsFromHandEffect(action, playerId, 1, 1, card, Culture.DWARVEN, CardType.EVENT));
}
});
action.appendEffect(
new DrawCardsEffect(action, playerId, 1));
return Collections.singletonList(action);
}
return null;
}
}