This commit is contained in:
marcins78
2013-03-19 11:03:28 +00:00
parent ba4c22aae1
commit 834d8c1168
2 changed files with 10 additions and 8 deletions

View File

@@ -285,7 +285,7 @@ var set20 = {
'20_284': 'http://lotrtcg.org/coreset/ringwraith/blackbeastofangmardif.png',
'20_285': 'http://lotrtcg.org/coreset/ringwraith/blackbreath.png',
'20_286': 'http://lotrtcg.org/coreset/ringwraith/bladetip.png',
'20_287': 'http://lotrtcg.org/coreset/ringwraith/comingforthering.png',
'20_287': 'http://lotrtcg.org/coreset/ringwraith/comingforthering(r1).png',
'20_288': 'http://lotrtcg.org/coreset/ringwraith/darkwhispers.png',
'20_289': 'http://lotrtcg.org/coreset/ringwraith/darklyswift.png',
'20_290': 'http://lotrtcg.org/coreset/ringwraith/falteringcourage.png',

View File

@@ -4,6 +4,7 @@ import com.gempukku.lotro.cards.AbstractResponseEvent;
import com.gempukku.lotro.cards.TriggerConditions;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.AddBurdenEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Keyword;
import com.gempukku.lotro.common.Race;
@@ -12,7 +13,6 @@ import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.GameUtils;
import com.gempukku.lotro.logic.effects.ChooseAndWoundCharactersEffect;
import com.gempukku.lotro.logic.timing.EffectResult;
import com.gempukku.lotro.logic.timing.results.CharacterWonSkirmishResult;
@@ -22,8 +22,9 @@ import java.util.List;
/**
* 0
* Coming for the Ring
* Ringwraith Event • Response
* If a Nazgul wins a skirmish, wound the Ring-bearer (and add a burden if that minion was a twilight Nazgul).
* Event • Response
* If a Nazgul wins a skirmish, exert the Ring-bearer (or add a burden if that minion was a twilight Nazgul).
* http://lotrtcg.org/coreset/ringwraith/comingforthering(r1).png
*/
public class Card20_287 extends AbstractResponseEvent {
public Card20_287() {
@@ -36,13 +37,14 @@ public class Card20_287 extends AbstractResponseEvent {
CharacterWonSkirmishResult winResult = (CharacterWonSkirmishResult) effectResult;
final PlayEventAction action = new PlayEventAction(self);
action.setText("Play "+ GameUtils.getFullName(self)+" for "+GameUtils.getFullName(winResult.getWinner()));
action.appendEffect(
new ChooseAndWoundCharactersEffect(action, playerId, 1, 1, Filters.ringBearer));
action.setText("Play " + GameUtils.getFullName(self) + " for " + GameUtils.getFullName(winResult.getWinner()));
if (Filters.and(Keyword.TWILIGHT).accepts(game.getGameState(), game.getModifiersQuerying(), winResult.getWinner()))
action.appendEffect(
new AddBurdenEffect(playerId, self, 1));
else
action.appendEffect(
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Filters.ringBearer));
return Collections.singletonList(action);
}
return null;