- "That Is No Orc Horn" is now allowing to heal a companion and liberate a site, rather than one of the effects.

This commit is contained in:
marcins78@gmail.com
2012-08-09 11:12:37 +00:00
parent cd693065de
commit f76a28e5b7
2 changed files with 5 additions and 11 deletions

View File

@@ -3,16 +3,11 @@ package com.gempukku.lotro.cards.set5.elven;
import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.ChoiceEffect;
import com.gempukku.lotro.cards.effects.LiberateASiteEffect;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.effects.ChooseAndHealCharactersEffect;
import com.gempukku.lotro.logic.timing.Effect;
import java.util.LinkedList;
import java.util.List;
/**
* Set: Battle of Helm's Deep
@@ -36,19 +31,15 @@ public class Card5_014 extends AbstractEvent {
@Override
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
PlayEventAction action = new PlayEventAction(self);
List<Effect> possibleEffects = new LinkedList<Effect>();
possibleEffects.add(
action.appendEffect(
new ChooseAndHealCharactersEffect(action, playerId, 1, 1, CardType.COMPANION) {
@Override
public String getText(LotroGame game) {
return "Heal a companion";
}
});
possibleEffects.add(
new LiberateASiteEffect(self));
action.appendEffect(
new ChoiceEffect(action, playerId, possibleEffects));
new LiberateASiteEffect(self));
return action;
}
}

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>9 Aug. 2012</b>
- "That Is No Orc Horn" is now allowing to heal a companion and liberate a site, rather than one of the effects.
<b>1 Aug. 2012</b>
- "Gorbag's Sword" now gives the option to put the possession on top of the deck to the owner of the card.